SVN revision: 23993
This commit is contained in:
sebastid 2006-07-17 19:02:42 +00:00 committed by sebastid
parent 76e9d5de34
commit d4aa3c882f
3 changed files with 3 additions and 5 deletions

View File

@ -38,8 +38,8 @@ e_ipc_init(void)
{
if ((st.st_uid ==
getuid()) &&
((st.st_mode & S_IFDIR|S_IRWXU|S_IRWXG|S_IRWXO) ==
S_IRWXU|S_IFDIR))
((st.st_mode & (S_IFDIR|S_IRWXU|S_IRWXG|S_IRWXO)) ==
(S_IRWXU|S_IFDIR)))
{
}
else

View File

@ -46,7 +46,6 @@ static Ecore_Idle_Enterer *_e_main_idle_enterer_flusher = NULL;
int
main(int argc, char **argv)
{
int ipc_failed = 0;
int i;
int nostartup = 0;
int after_restart = 0;

View File

@ -74,8 +74,7 @@ e_thumb_icon_add(Evas *evas)
{
Evas_Object *obj;
E_Thumb *eth;
char buf[32];
obj = e_icon_add(evas);
_objid++;
eth = E_NEW(E_Thumb, 1);