]> git.street.me.uk Git - andy/viking.git/commitdiff
Fix debug message
authorGuilhem Bonnefille <guilhem.bonnefille@gmail.com>
Mon, 16 Aug 2010 21:25:21 +0000 (23:25 +0200)
committerGuilhem Bonnefille <guilhem.bonnefille@gmail.com>
Mon, 16 Aug 2010 21:25:21 +0000 (23:25 +0200)
src/mapcache.c

index f2c19ba6150f2d5548bad582880f09ad265faa2c..5485f1789b719d9e08a8d6a4d0d0f85d47736217 100644 (file)
@@ -152,7 +152,7 @@ void a_mapcache_add ( GdkPixbuf *pixbuf, gint x, gint y, gint z, guint8 type, gu
   }
   g_mutex_unlock(mc_mutex);
 
-  if ( (++tmp == 100 ))  { g_print("DEBUG: queue count=%d %u\n", queue_count, queue_size ); tmp=0; }
+  if ( (++tmp == 100 ))  { g_print("DEBUG: queue count=%d size=%u\n", queue_count, queue_size ); tmp=0; }
 }
 
 GdkPixbuf *a_mapcache_get ( gint x, gint y, gint z, guint8 type, guint zoom, guint8 alpha, gdouble xshrinkfactor, gdouble yshrinkfactor )