From c8e941bb7908d99c9a9fdf67ce95883a2e342420 Mon Sep 17 00:00:00 2001 From: Matheus Afonso Martins Moreira Date: Thu, 2 Nov 2023 06:18:28 -0300 Subject: [PATCH] vcscanf: define floating point result variable Holds the parsed floating point value. --- libc/stdio/vcscanf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libc/stdio/vcscanf.c b/libc/stdio/vcscanf.c index 5bec3efd8..b6ea00264 100644 --- a/libc/stdio/vcscanf.c +++ b/libc/stdio/vcscanf.c @@ -102,6 +102,7 @@ int __vcscanf(int callback(void *), // break; case '%': { uint128_t number; + double fp; unsigned width = 0; unsigned char bits = 32; unsigned char charbytes = sizeof(char);