From 34909d3887a7ac3f423f00ec0913a2da6447e374 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Mon, 6 Feb 2012 16:30:52 +0800 Subject: fixes format-security warnings --- tests/storage/test_parser.cpp | 2 +- tests/storage/test_parser2.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/storage') diff --git a/tests/storage/test_parser.cpp b/tests/storage/test_parser.cpp index a0045e6..7f10d78 100644 --- a/tests/storage/test_parser.cpp +++ b/tests/storage/test_parser.cpp @@ -57,7 +57,7 @@ static const char *help_msg = " zy-et26\n"; void print_help(){ - printf(help_msg); + printf("%s", help_msg); } int main (int argc, char * argv []) diff --git a/tests/storage/test_parser2.cpp b/tests/storage/test_parser2.cpp index 276a3a9..7c7058c 100644 --- a/tests/storage/test_parser2.cpp +++ b/tests/storage/test_parser2.cpp @@ -48,7 +48,7 @@ static const char * help_msg = void print_help(){ - printf(help_msg); + printf("%s", help_msg); } int main(int argc, char * argv[]) { -- cgit