From 04e9565d5058ae24ce3b68d623d7795346422289 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Tue, 11 Dec 2012 01:01:19 +0100 Subject: [PATCH] Fixed superfluous argument in printf(), found by static code analysis. --- src/Thread_Initialization.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Thread_Initialization.cpp b/src/Thread_Initialization.cpp index 33aadf1e..33ff4d9d 100644 --- a/src/Thread_Initialization.cpp +++ b/src/Thread_Initialization.cpp @@ -313,7 +313,7 @@ void InitializationThread::run() void InitializationThread::delay(void) { const char *temp = "|/-\\"; - printf("Thread is doing something important... ?\b", temp[4]); + printf("Thread is doing something important... ?\b"); for(int i = 0; i < 20; i++) {