Fixed grammar mistakes.

This commit is contained in:
Gunnar Beutner 2012-09-25 15:33:51 +02:00
parent 8114cb7f1c
commit f8aa5f67a2
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ void Application::TimeWatchThreadProc(void)
/* We made a significant jump in time. */
stringstream msgbuf;
msgbuf << "We jumped "
<< (timeDiff < 0 ? "forwards" : "backwards")
<< (timeDiff < 0 ? "forward" : "backward")
<< " in time: " << abs(timeDiff) << " seconds";
Logger::Write(LogInformation, "base", msgbuf.str());