1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 13:25:07 +00:00

UserspaceEmulator: Remove remaining printf calls.

This commit is contained in:
asynts 2020-10-04 16:23:41 +02:00 committed by Andreas Kling
parent d5ffb51a83
commit e089855af0
4 changed files with 6 additions and 17 deletions

View file

@ -78,7 +78,7 @@ int main(int argc, char** argv, char** env)
}
int rc = pthread_setname_np(pthread_self(), builder.to_string().characters());
if (rc != 0) {
fprintf(stderr, "pthread_setname_np: %s\n", strerror(rc));
warnln("pthread_setname_np: {}", strerror(rc));
return 1;
}
return emulator.exec();