training: Add missing linefeed to error message

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil 2018-06-06 21:32:16 +02:00
parent 52fddc3ca9
commit 0215d91f45

View File

@ -52,7 +52,7 @@ class IcuErrorCode : public icu::ErrorCode {
protected:
virtual void handleFailure() const {
tprintf("ICU ERROR: %s", errorName());
tprintf("ICU ERROR: %s\n", errorName());
exit(errorCode);
}