From: Rob Norris Date: Thu, 12 Nov 2015 22:39:29 +0000 (+0000) Subject: CID#132255: Fix stray semicolon introduced by recent commit. X-Git-Url: https://git.street.me.uk/andy/viking.git/commitdiff_plain/3959d3aba178ab25503d515fdd797f0a20bc8e1b CID#132255: Fix stray semicolon introduced by recent commit. Fix broken commit in SHA:5e4cce8f309867bee2f16bc463e0f0b461d19ecf --- diff --git a/src/vikmapniklayer.c b/src/vikmapniklayer.c index 7203cf1a..6e33e451 100644 --- a/src/vikmapniklayer.c +++ b/src/vikmapniklayer.c @@ -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 );