diff options
author | Daniel Friesel <derf@finalrewind.org> | 2010-09-18 22:43:32 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2010-09-18 22:43:32 +0200 |
commit | 4bd3b9ac28d66cd2d4efe1c86215f7ff5a1648f6 (patch) | |
tree | 541e5e1c8cf82ec91a826be4e9013c5daa54d396 /src | |
parent | fec907f19cafc655d21bd8e123539b075aad8531 (diff) |
support.c: Add missing break statement. Duh.
Diffstat (limited to 'src')
-rw-r--r-- | src/support.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/support.c b/src/support.c index 7e37632..220b73e 100644 --- a/src/support.c +++ b/src/support.c @@ -59,6 +59,7 @@ void feh_wm_set_bg_file(char *file, unsigned char bgmode) break; case BG_MODE_FILL: feh_wm_set_bg(file, im, 0, 0, 1, 0, 1); + break; case BG_MODE_MAX: feh_wm_set_bg(file, im, 0, 0, 2, 0, 1); break; |