OSDN Git Service

Fixed superfluous argument in printf(), found by static code analysis.
authorLoRd_MuldeR <mulder2@gmx.de>
Tue, 11 Dec 2012 00:01:19 +0000 (01:01 +0100)
committerLoRd_MuldeR <mulder2@gmx.de>
Tue, 11 Dec 2012 00:01:19 +0000 (01:01 +0100)
src/Thread_Initialization.cpp

index 33aadf1..33ff4d9 100644 (file)
@@ -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++)
        {