From ce201f2e8712334045c9388098dd5d1aba8a92db Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 9 Jun 2024 23:43:22 +0200 Subject: [PATCH] PCjs: Change an uint8 to uint8_t. --- src/floppy/fdd_pcjs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/floppy/fdd_pcjs.c b/src/floppy/fdd_pcjs.c index 474d8ee37..f96af5c5f 100644 --- a/src/floppy/fdd_pcjs.c +++ b/src/floppy/fdd_pcjs.c @@ -350,7 +350,7 @@ int json_parse(pcjs_t *dev) if (sector->data == NULL ) { /* We could verify the sector size against the metadata here */ - sector->data = (uint8 *)calloc(1, current_length); + sector->data = (uint8_t *)calloc(1, current_length); if (sector->data == NULL ) { pcjs_log("Failed to allocate\n"); pcjs_error = E_ALLOC;