as pointed out in this warning:
command.c:1206: warning: 'font_atom' is used uninitialized in this function

gc_atom = XInternAtom(Xdisplay, "GC", False);
gc_atom = XInternAtom(Xdisplay, "FONT", False);

that second line is obviously wrong and should be font_atom = ...
-mike

Attachment: pgp3AOeWGJPld.pgp
Description: PGP signature

Index: command.c
===================================================================
RCS file: /cvs/e/eterm/Eterm/src/command.c,v
retrieving revision 1.113
diff -u -p -r1.113 command.c
--- command.c	18 Aug 2006 17:41:19 -0000	1.113
+++ command.c	14 Oct 2006 05:07:27 -0000
@@ -1125,7 +1125,7 @@ x_resource_dump(int sig)
     /* Create type atoms for future use. */
     pixmap_atom = XInternAtom(Xdisplay, "PIXMAP", False);
     gc_atom = XInternAtom(Xdisplay, "GC", False);
-    gc_atom = XInternAtom(Xdisplay, "FONT", False);
+    font_atom = XInternAtom(Xdisplay, "FONT", False);
 
     /* Look at what *we* think our consumption is. */
 #if DEBUG >= DEBUG_MEM
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to