diff options
author | portix <none@none> | 2012-05-30 13:47:06 +0200 |
---|---|---|
committer | portix <none@none> | 2012-05-30 13:47:06 +0200 |
commit | 5de803da7bde5953b33fb13bf8f5bf7f0e81fc32 (patch) | |
tree | 3406fd0bdeabdfd3ad10ae439dfa5e460c4da97d /src/util.c | |
parent | 9e26c3232e00613a37a0671768ad6ad61e924f36 (diff) | |
download | dwb-5de803da7bde5953b33fb13bf8f5bf7f0e81fc32.zip |
Fix all -Wextra warnings except for -Wunused-parameter
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -809,7 +809,7 @@ util_string_to_sanitize(const char *string) { else if (!strcmp(token[i], "allsessions")) s |= SANITIZE_ALLSESSIONS; else { - s = -1; + s = SANITIZE_ERROR; break; } } |