]> err.no Git - mapper/commitdiff
Formating
authorKaj-Michael Lang <milang@onion.tal.org>
Mon, 6 Aug 2007 14:48:24 +0000 (17:48 +0300)
committerKaj-Michael Lang <milang@onion.tal.org>
Mon, 6 Aug 2007 14:48:24 +0000 (17:48 +0300)
src/map-poi.c

index b273f5d2e2412fb7369bc0d6c95ab96b9a685684..18ac055b2eac2cc17cf5903033afbbd1b11b798e 100644 (file)
@@ -66,7 +66,7 @@ return pixbuf;
 /**
  * Render all the POI data.  This should be done before rendering track data.
  */
-void map_render_poi()
+void map_render_poi(void)
 {
 guint unitx, unity;
 gfloat lat1, lat2, lon1, lon2;
@@ -74,8 +74,11 @@ gint poix, poiy;
 GdkPixbuf *pixbuf = NULL;
 printf("%s()\n", __PRETTY_FUNCTION__);
 
-if (!_db) return;
-if (_poi_zoom <= _zoom) return;
+if (!_db) 
+       return;
+
+if (_poi_zoom <= _zoom) 
+       return;
 
 unitx = x2unit(0);
 unity = y2unit(BUF_HEIGHT_PIXELS);