mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 08:51:13 +00:00
b39dc6e550
add patch to fix -Wformat-security warnings. Signed-off-by: Sandeep Sheriker M <sandeep.sheriker@microchip.com>
14 lines
454 B
Diff
14 lines
454 B
Diff
diff --git a/cmd/version.c b/cmd/version.c
|
|
index b2fffe9..bcbbeb1 100644
|
|
--- a/cmd/version.c
|
|
+++ b/cmd/version.c
|
|
@@ -18,7 +18,7 @@ static int do_version(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|
{
|
|
char buf[DISPLAY_OPTIONS_BANNER_LENGTH];
|
|
|
|
- printf(display_options_get_banner(false, buf, sizeof(buf)));
|
|
+ printf("%s",display_options_get_banner(false, buf, sizeof(buf)));
|
|
#ifdef CC_VERSION_STRING
|
|
puts(CC_VERSION_STRING "\n");
|
|
#endif
|