]> err.no Git - mapper/commitdiff
Small debug output fix.
authorKaj-Michael Lang <milang@onion.tal.org>
Tue, 11 Mar 2008 13:07:48 +0000 (15:07 +0200)
committerKaj-Michael Lang <milang@onion.tal.org>
Tue, 11 Mar 2008 13:07:48 +0000 (15:07 +0200)
src/poi.c

index b50674db9889692f610dfb322475a6d96505ddc2..3d106b001c607003f674c1bfcb723ff8a22054b1 100644 (file)
--- a/src/poi.c
+++ b/src/poi.c
@@ -894,12 +894,11 @@ if (icon==NULL)
 if (strlen(icon)==0)
        return NULL;
 
-g_debug("POI icon cache: %d / %d\n", hit, miss);
+g_debug("POI icon cache: %d / %d", hit, miss);
 
 g_snprintf(buffer, sizeof(buffer), "%s/%s.%s/%s.png", 
        theme_base, theme, (big==TRUE) ? "big" : "small", icon);
 
-g_debug("Loading POI icon: %s", buffer);
 pixbuf=g_hash_table_lookup(poi_icon_hash, buffer);
 if (pixbuf) {
        hit++;
@@ -907,6 +906,7 @@ if (pixbuf) {
 }
 miss++;
 
+g_debug("Loading POI icon: %s", buffer);
 pixbuf=gdk_pixbuf_new_from_file(buffer, &error);
 
 if (error)