29 lines
843 B
Diff
29 lines
843 B
Diff
|
From bfb0e54f493d4003a397d5c1b50fc77195e7ffb5 Mon Sep 17 00:00:00 2001
|
||
|
From: Stewart Smith <stewart@linux.vnet.ibm.com>
|
||
|
Date: Thu, 2 Feb 2017 16:35:40 +1100
|
||
|
Subject: [PATCH] libc/stdio/vsnprintf.c: add explicit fallthrough
|
||
|
|
||
|
silences recent GCC warning
|
||
|
|
||
|
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
|
||
|
Signed-off-by: Bruce Rogers <brogers@suse.com>
|
||
|
---
|
||
|
libc/stdio/vsnprintf.c | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
diff --git a/libc/stdio/vsnprintf.c b/libc/stdio/vsnprintf.c
|
||
|
index fbb84a0b..e83cee84 100644
|
||
|
--- a/libc/stdio/vsnprintf.c
|
||
|
+++ b/libc/stdio/vsnprintf.c
|
||
|
@@ -164,6 +164,7 @@ print_format(char **buffer, size_t bufsize, const char *format, void *var)
|
||
|
break;
|
||
|
case 'X':
|
||
|
upper = true;
|
||
|
+ /* fallthrough */
|
||
|
case 'x':
|
||
|
sizec[i] = '\0';
|
||
|
value = (unsigned long) var & convert[length_mod];
|
||
|
--
|
||
|
2.14.1
|
||
|
|