diff options
Diffstat (limited to 'source/core/StarByteArray.hpp')
-rw-r--r-- | source/core/StarByteArray.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/StarByteArray.hpp b/source/core/StarByteArray.hpp index 9f63643..cb5633b 100644 --- a/source/core/StarByteArray.hpp +++ b/source/core/StarByteArray.hpp @@ -242,7 +242,7 @@ inline char ByteArray::operator[](size_t i) const { inline char ByteArray::at(size_t i) const { if (i >= m_size) - throw OutOfRangeException(strf("Out of range in ByteArray::at(%s)", i)); + throw OutOfRangeException(strf("Out of range in ByteArray::at({})", i)); return m_data[i]; } |