Fix error log

Oops
This commit is contained in:
Stephen Miller 2025-03-24 13:08:31 -05:00 committed by GitHub
parent 648be7dfac
commit 8165c82c8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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