This commit is contained in:
Pietro Gagliardi 2019-05-10 21:36:38 -04:00
parent 07dc3ee025
commit 637c7a7e2c
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ int main(int argc, char *argv[])
err.Size = sizeof (uiInitError);
ret = uiInit(NULL, &err);
if (ret == 0) {
fprintf(stderr, "uiInit() failed: %s; can't continue", err.Message);
fprintf(stderr, "uiInit() failed: %s; can't continue\n", err.Message);
printf("FAIL\n");
return 1;
}