Commit 40844914 authored by Barry Perlman's avatar Barry Perlman Committed by Yoni Fogel

[t:2795] Placate fussy compiler unhappy about test utility print_time_now().

git-svn-id: file:///svn/toku/tokudb@21899 c7de825b-a66e-492c-adef-691d508d4ae1
parent 7e7935d5
...@@ -240,7 +240,7 @@ void print_time_now(void) { ...@@ -240,7 +240,7 @@ void print_time_now(void) {
char timestr[80]; char timestr[80];
time_t now = time(NULL); time_t now = time(NULL);
format_time(&now, timestr); format_time(&now, timestr);
printf(timestr); printf("%s", timestr);
} }
//Simulate as hard a crash as possible. //Simulate as hard a crash as possible.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment