Use const for ecore_strings.

SVN revision: 18863
This commit is contained in:
rbdpngn 2005-12-06 03:44:47 +00:00 committed by rbdpngn
parent f20a699a57
commit 9b2d5dc9e6
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ int ecore_string_init()
* @c NULL on failure.
* @ingroup Ecore_String_Group
*/
char *ecore_string_instance(char *string)
const char *ecore_string_instance(char *string)
{
Ecore_String *str;
@ -78,7 +78,7 @@ char *ecore_string_instance(char *string)
* @param string The given string.
* @ingroup Ecore_String_Group
*/
void ecore_string_release(char *string)
void ecore_string_release(const char *string)
{
Ecore_String *str;