Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: <enlightenment-cvs@li...> - 2005-09-29 15:16:09
|
Enlightenment CVS committal Author : sebastid Project : e17 Module : apps/e Dir : e17/apps/e/src/bin Modified Files: e_zone.c Log Message: Make sure the startup_id is > 0 =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_zone.c,v retrieving revision 1.76 retrieving revision 1.77 diff -u -3 -r1.76 -r1.77 --- e_zone.c 29 Sep 2005 15:01:04 -0000 1.76 +++ e_zone.c 29 Sep 2005 15:15:50 -0000 1.77 @@ -581,6 +581,7 @@ e_util_env_set("LD_PRELOAD_PATH", buf); snprintf(buf, sizeof(buf), "%s/enlightenment/preload/e_hack.so", e_prefix_lib_get()); */ + if (startup_id < 1) startup_id = 1; snprintf(buf, sizeof(buf), "E_START|%i", startup_id++); e_util_env_set("DESKTOP_STARTUP_ID", buf); /* execute */ |