mirror of
https://github.com/janet-lang/janet
synced 2025-10-27 05:37:42 +00:00
Fix int64 coerce bug in sqlite3 binding.
This commit is contained in:
@@ -425,7 +425,7 @@ static const uint8_t *coerce_int64(int64_t x) {
|
||||
bytes[i++] = x % 10;
|
||||
x = x / 10;
|
||||
}
|
||||
bytes[i++] = '\0';
|
||||
bytes[i] = '\0';
|
||||
return dst_string(bytes, i);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user