*: 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

@@ -857,8 +857,8 @@ static void log_server_msg(uint64_t channel_id,
log_msg_close(f, (msgpack_object) {
.type = MSGPACK_OBJECT_STR,
.via.str = {
.ptr = (char *) msgpack_error_messages[result + MUR_OFF],
.size = (uint32_t) strlen(
.ptr = (char *)msgpack_error_messages[result + MUR_OFF],
.size = (uint32_t)strlen(
msgpack_error_messages[result + MUR_OFF]),
},
});