*: Fix linter errors

Also adds one exception to linter rules:

    typedef struct {
      kvec_t(Object) stack;
    } EncodedData;

is completely valid (from the style guide point of view) code.
This commit is contained in:
ZyX
2016-06-24 17:16:11 +03:00
parent 50f5bb8ade
commit 458a4d0444
7 changed files with 21 additions and 20 deletions

View File

@@ -4656,7 +4656,7 @@ set_option_value (
return NULL;
}
if (flags & P_STRING) {
const char *s = (char *) string;
const char *s = (const char *)string;
if (s == NULL) {
s = "";
}