mirror of
https://github.com/janet-lang/janet
synced 2024-11-28 02:59:54 +00:00
Address some compiler linter messages on openbsd
This commit is contained in:
parent
3e402d397e
commit
c747e8d16c
@ -73,13 +73,13 @@ static void *int64_unmarshal(JanetMarshalContext *ctx) {
|
|||||||
|
|
||||||
static void it_s64_tostring(void *p, JanetBuffer *buffer) {
|
static void it_s64_tostring(void *p, JanetBuffer *buffer) {
|
||||||
char str[32];
|
char str[32];
|
||||||
sprintf(str, "%" PRId64, *((int64_t *)p));
|
snprintf(str, sizeof(str), "%" PRId64, *((int64_t *)p));
|
||||||
janet_buffer_push_cstring(buffer, str);
|
janet_buffer_push_cstring(buffer, str);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void it_u64_tostring(void *p, JanetBuffer *buffer) {
|
static void it_u64_tostring(void *p, JanetBuffer *buffer) {
|
||||||
char str[32];
|
char str[32];
|
||||||
sprintf(str, "%" PRIu64, *((uint64_t *)p));
|
snprintf(str, sizeof(str), "%" PRIu64, *((uint64_t *)p));
|
||||||
janet_buffer_push_cstring(buffer, str);
|
janet_buffer_push_cstring(buffer, str);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -830,7 +830,7 @@ static const char *scanformat(
|
|||||||
if (loc != NULL && *loc != '\0') {
|
if (loc != NULL && *loc != '\0') {
|
||||||
const char *mapping = get_fmt_mapping(*p2++);
|
const char *mapping = get_fmt_mapping(*p2++);
|
||||||
size_t len = strlen(mapping);
|
size_t len = strlen(mapping);
|
||||||
strcpy(form, mapping);
|
memcpy(form, mapping, len);
|
||||||
form += len;
|
form += len;
|
||||||
} else {
|
} else {
|
||||||
*(form++) = *(p2++);
|
*(form++) = *(p2++);
|
||||||
|
Loading…
Reference in New Issue
Block a user