Clang
This commit is contained in:
Stephen Miller 2025-03-24 13:27:09 -05:00 committed by GitHub
parent 8165c82c8f
commit 8a5b333177
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -131,7 +131,8 @@ namespace {
case SeekOrigin::End:
return SEEK_END;
default:
LOG_ERROR(Common_Filesystem, "Unsupported origin {}, defaulting to SEEK_SET", static_cast<u32>(origin));
LOG_ERROR(Common_Filesystem, "Unsupported origin {}, defaulting to SEEK_SET",
static_cast<u32>(origin));
return SEEK_SET;
}
}