diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-10-10 11:58:59 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-10-10 12:09:23 +0200 |
commit | 6d84a1d22038d0a03c19d43ec4c8a01acbf13426 (patch) | |
tree | 4851e1c9b60a065485f90bae6c4afd7cd0ed6ca6 /src/options.c | |
parent | 58e7ef40a6fc437f84b7761d2bf83acfc534ceb8 (diff) |
Code cleanup
Diffstat (limited to 'src/options.c')
-rw-r--r-- | src/options.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/options.c b/src/options.c index eeb8340..b7eb544 100644 --- a/src/options.c +++ b/src/options.c @@ -743,7 +743,7 @@ static void check_options(void) } if (opt.full_screen && opt.multiwindow) { - eprintf("You cannot combine --full-screen with --multiwindow"); + eprintf("You cannot combine --fullscreen with --multiwindow"); } if (opt.list && (opt.multiwindow || opt.index || opt.collage)) { @@ -760,13 +760,6 @@ static void check_options(void) eprintf("You cannot combine --loadable with --unloadable"); } - if (opt.thumb_title && (!opt.thumbs)) { - weprintf("Doesn't make sense to set thumbnail title when not in\n" - "thumbnail mode.\n"); - free(opt.thumb_title); - opt.thumb_title = NULL; - } - return; } |