UserspaceEmulator: Remove remaining printf calls.

This commit is contained in:
asynts 2020-10-04 16:23:41 +02:00 committed by Andreas Kling
commit e089855af0
Notes: sideshowbarker 2024-07-19 02:04:21 +09:00
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();