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

UserspaceEmulator: Add some implied auto qualifiers

This commit is contained in:
Hendiadyoin1 2021-12-22 16:20:22 +01:00 committed by Brian Gianforcaro
parent bf714efa41
commit 15daae468b
5 changed files with 10 additions and 10 deletions

View file

@ -65,7 +65,7 @@ int main(int argc, char** argv, char** env)
if (dump_profile) {
profile_output_file = fopen(profile_dump_path.characters(), "w+");
if (profile_output_file == nullptr) {
auto error_string = strerror(errno);
char const* error_string = strerror(errno);
warnln("Failed to open '{}' for writing: {}", profile_dump_path, error_string);
return 1;
}