diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-08-29 22:39:49 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-08-29 22:39:57 +0200 |
commit | 6206ca48113d6790e5681d98ef2b89fd2a1d44da (patch) | |
tree | e273629e7f5e16704e9713076771f54eeda73051 /src/keyevents.c | |
parent | 6476d7dc4e3acc63aeb57b6d89f50c9b44a2ec98 (diff) |
Various code fixups
* remove unused variable Im1 in filelist.c
* options are initialised as 0, so only explicitly set those to 0 for which it
makes sense because of their context
* Make a few warnings about wrong option combinations fatal
Diffstat (limited to 'src/keyevents.c')
-rw-r--r-- | src/keyevents.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyevents.c b/src/keyevents.c index 82d0cce..60663db 100644 --- a/src/keyevents.c +++ b/src/keyevents.c @@ -65,7 +65,7 @@ static void feh_set_parse_kb_partial(fehkey *key, int index, char *ks) { mod |= Mod4Mask; break; default: - weprintf("keys: invalid modifier %c in %s", cur[0], ks); + weprintf("keys: invalid modifier %c in \"%s\"", cur[0], ks); break; } cur += 2; |