diff src/balloon-x.c @ 169:15872534500d r20-3b11

Import from CVS: tag r20-3b11
author cvs
date Mon, 13 Aug 2007 09:46:53 +0200
parents 6b37e6ddd302
children 262b8bb4a523
line wrap: on
line diff
--- a/src/balloon-x.c	Mon Aug 13 09:45:48 2007 +0200
+++ b/src/balloon-x.c	Mon Aug 13 09:46:53 2007 +0200
@@ -78,9 +78,9 @@
 static void
 init (void)
 {
-  static int init;
+  static int init_p = 0;
 
-  if (!init)
+  if (!init_p)
     {
       Pixel fg, bg, shine, shadow;
       XFontStruct* font;
@@ -95,7 +95,7 @@
       font = open_font (dpy, "-adobe-helvetica-medium-r-normal--12-*");
 
       balloon_help_create (dpy, bg, fg, shine, shadow, font);
-      init = 1;
+      init_p = 1;
     }
 }