diff --git a/deps/ox/src/ox/std/trace.cpp b/deps/ox/src/ox/std/trace.cpp index 08a0d245..12d785db 100644 --- a/deps/ox/src/ox/std/trace.cpp +++ b/deps/ox/src/ox/std/trace.cpp @@ -15,7 +15,7 @@ void logError(const char *file, int line, const Error &err) { TraceStream trc(file, line, "ox::error"); trc << "Error:" << err; if (err.file != nullptr) { - trc << "(" << reinterpret_cast(err.file) << ":" << err.line << ")"; + trc << "(" << err.file << ":" << err.line << ")"; } } }