fix new GCC 14 warnings

This commit is contained in:
Lephe 2024-08-06 19:02:43 +02:00
parent 85e50658ea
commit 93329ab697
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495
3 changed files with 5 additions and 5 deletions

View file

@ -629,7 +629,7 @@ static bool gdb_handle_stubcall(gdb_cpu_state_t* cpu_state)
int sc_num = cpu_state->reg.r3;
if(sc_num == 64) { /* write */
int len = snprintf(str, sizeof str, "Fwrite,%x,%08x,%x",
int len = snprintf(str, sizeof str, "Fwrite,%lx,%08lx,%lx",
cpu_state->reg.r4,
cpu_state->reg.r5,
cpu_state->reg.r6);

View file

@ -247,7 +247,7 @@ static void prepend_link(block_t *b, index_t *index)
//---
/* Round a size to the closest allocatable size */
static size_t round(size_t size)
static size_t round_size(size_t size)
{
return (size < 8) ? 8 : ((size + 3) & ~3);
}
@ -256,7 +256,7 @@ static void *gint_malloc(size_t size, void *data)
{
index_t *index = data;
stats_t *s = index->stats;
size = round(size);
size = round_size(size);
int c = size_class(size);
/* Try to find a class that has a free block available */
@ -330,7 +330,7 @@ static void *gint_realloc(void *ptr, size_t size, void *data)
index_t *index = data;
stats_t *s = index->stats;
block_t *b = ptr - sizeof(block_t);
size = round(size);
size = round_size(size);
int size_before = b->size;
/* When requesting a smaller size, split the original block */

View file

@ -539,7 +539,7 @@ static void USB_LOG_TR(char const *p, asyncio_op_t *t, char const *fmt, ...)
if(t->shbuf_size >= 4)
sprintf(shbuf, "!!%d", t->shbuf_size);
else
snprintf(shbuf, t->shbuf_size * 2 + 1, "%08x", t->shbuf);
snprintf(shbuf, t->shbuf_size * 2 + 1, "%08lx", t->shbuf);
char str[128];
snprintf(str, sizeof str - 1, "%s: %s buf=%d%s%s req=%d/%d%s |%s| ",