damn typos

SVN revision: 73006
This commit is contained in:
Mike Blumenkrantz 2012-06-28 13:27:31 +00:00
parent b05f7bb2fc
commit d147505875
1 changed files with 4 additions and 3 deletions

View File

@ -74,11 +74,12 @@ _e_config_error_dialog_cb_delete(void *dia)
_e_config_error_dialog = NULL; _e_config_error_dialog = NULL;
} }
static char * static const char *
_e_config_profile_name_get(Eet_File *ef) _e_config_profile_name_get(Eet_File *ef)
{ {
/* profile config exists */ /* profile config exists */
char *data, *s = NULL; char *data;
const char *s = NULL;
int data_len = 0; int data_len = 0;
data = eet_read(ef, "config", &data_len); data = eet_read(ef, "config", &data_len);
@ -99,7 +100,7 @@ _e_config_profile_name_get(Eet_File *ef)
} }
s = NULL; s = NULL;
if (ok) if (ok)
eina_stringshare_add_length(data, data_len); s = eina_stringshare_add_length(data, data_len);
free(data); free(data);
} }
return s; return s;