diff options
author | Daniel Friesel <derf@finalrewind.org> | 2012-09-21 14:57:32 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2012-09-21 14:57:32 +0200 |
commit | 4c8120cb44c99a6488077688647ef192d455b2e7 (patch) | |
tree | 1acb50baea723ef90d81328b446683d7e2faf1be | |
parent | b4838c78ac9336d2ec3c7e97df6153b6e6553826 (diff) |
imlib.c: Fix debug builds (add missing semicolon)
-rw-r--r-- | src/imlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imlib.c b/src/imlib.c index f247bf7..a2bd4ac 100644 --- a/src/imlib.c +++ b/src/imlib.c @@ -256,7 +256,7 @@ int feh_load_image(Imlib_Image * im, feh_file * file) fputs("\n", stdout); reset_output = 1; } - feh_imlib_print_load_error(file->filename, NULL, err) + feh_imlib_print_load_error(file->filename, NULL, err); D(("Load *failed*\n")); return(0); } |