]> git.street.me.uk Git - andy/viking.git/commitdiff
CID#132255: Fix stray semicolon introduced by recent commit.
authorRob Norris <rw_norris@hotmail.com>
Thu, 12 Nov 2015 22:39:29 +0000 (22:39 +0000)
committerRob Norris <rw_norris@hotmail.com>
Sat, 14 Nov 2015 10:27:30 +0000 (10:27 +0000)
Fix broken commit in SHA:5e4cce8f309867bee2f16bc463e0f0b461d19ecf

src/vikmapniklayer.c

index 7203cf1ac4fde0083a445b805a64e531436043fd..6e33e4513084b5e8b2e9cdc8eef7a891ec983268 100644 (file)
@@ -637,7 +637,7 @@ static void possibly_save_pixbuf ( VikMapnikLayer *vml, GdkPixbuf *pixbuf, MapCo
 
                        gchar *dir = g_path_get_dirname ( filename );
                        if ( !g_file_test ( filename, G_FILE_TEST_EXISTS ) )
-                               if ( g_mkdir_with_parents ( dir , 0777 ) != 0 );
+                               if ( g_mkdir_with_parents ( dir , 0777 ) != 0 )
                                        g_warning ("%s: Failed to mkdir %s", __FUNCTION__, dir );
                        g_free ( dir );