diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2023-08-26 20:27:48 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2023-08-27 00:46:09 +0100 |
commit | 531854eb1cf06aa17419c5c45dead8943153b195 (patch) | |
tree | 4860a2270036fef32896c8ddb6bb1ee25b6db44d /src/chunklets/msg.h | |
parent | a1998f2f7ce4153d670e2e5cb5018366517cc1ca (diff) |
Fix msgpack sizing blunders
Reminder not to actually use any of the code I write until it's at least
been included in a few releases of something. :^)
Diffstat (limited to 'src/chunklets/msg.h')
-rw-r--r-- | src/chunklets/msg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chunklets/msg.h b/src/chunklets/msg.h index b85bde3..c40bdbe 100644 --- a/src/chunklets/msg.h +++ b/src/chunklets/msg.h @@ -162,7 +162,7 @@ void msg_putf(unsigned char *out, float val); int msg_putd(unsigned char *out, double val); /* - * Writes the string size sz in the range [0, 15] to the buffer out. Values + * Writes the string size sz in the range [0, 31] to the buffer out. Values * outside this range will produce an undefined encoding. Always writes a single * byte. * |