diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-27 19:24:35 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-27 19:24:35 +1000 |
commit | 14b9689b6d4f4ad5276c88130dc6e449bedc0709 (patch) | |
tree | 829e760821fb887470ba2a820d309db1428f7f17 /source/core/StarIODevice.cpp | |
parent | c9e889723b7af832322d178975e6e440d6cd3ae5 (diff) |
Change formatting to use fmtlib (STILL NEED TO CHANGE TO FMT SYNTAX!)
Diffstat (limited to 'source/core/StarIODevice.cpp')
-rw-r--r-- | source/core/StarIODevice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/StarIODevice.cpp b/source/core/StarIODevice.cpp index d87d33f..1274e89 100644 --- a/source/core/StarIODevice.cpp +++ b/source/core/StarIODevice.cpp @@ -52,7 +52,7 @@ void IODevice::close() { void IODevice::sync() {} String IODevice::deviceName() const { - return strf("IODevice <%s>", this); + return strf("IODevice <%s>", (void*)this); } bool IODevice::atEnd() { |