formatting

SVN revision: 35790
This commit is contained in:
Sebastian Dransfeld 2008-09-02 05:36:27 +00:00
parent 43fcbd7eed
commit 5341e6e2d4
1 changed files with 8 additions and 8 deletions

View File

@ -1904,10 +1904,10 @@ e_config_profile_save(void)
{ {
int ret; int ret;
ret = ecore_file_mv(buf2, buf); ret = ecore_file_mv(buf2, buf);
if (!ret) if (!ret)
{ {
printf("*** Error saving profile. ***"); printf("*** Error saving profile. ***");
} }
} }
ecore_file_unlink(buf2); ecore_file_unlink(buf2);
@ -1938,12 +1938,12 @@ e_config_domain_save(const char *domain, E_Config_DD *edd, const void *data)
ok = eet_data_write(ef, edd, "config", data, 1); ok = eet_data_write(ef, edd, "config", data, 1);
if (_e_config_eet_close_handle(ef, buf2)) if (_e_config_eet_close_handle(ef, buf2))
{ {
ret = ecore_file_mv(buf2, buf); ret = ecore_file_mv(buf2, buf);
if (!ret) if (!ret)
{ {
printf("*** Error saving profile. ***"); printf("*** Error saving profile. ***");
} }
} }
ecore_file_unlink(buf2); ecore_file_unlink(buf2);
} }
return ok; return ok;