Skip to content

Commit

Permalink
Remove warning
Browse files Browse the repository at this point in the history
  • Loading branch information
qvacua committed Jul 3, 2022
1 parent b48a677 commit 4cd9844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NvimServer/Sources/server_ui_bridge.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ static void server_ui_raw_line(
msgpack_pack_array(packer, (size_t) count);
for (Integer i = 0; i < count; i++) {msgpack_pack_cstr(packer, (const char *) chunk[i]);}
msgpack_pack_array(packer, (size_t) count);
for (Integer i = 0; i < count; i++) {msgpack_pack_int16(packer, attrs[i]);}
for (Integer i = 0; i < count; i++) {msgpack_pack_int64(packer, attrs[i]);}
});
}

Expand Down

0 comments on commit 4cd9844

Please sign in to comment.