diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-27 20:23:44 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-27 20:23:44 +1000 |
commit | 332983c97b7a729c4dc5f19aa9ee4a22c420f7d8 (patch) | |
tree | fd9c441b796b522bdd5c7f8fbd32f51b8eff2a28 /source/core/StarByteArray.cpp | |
parent | 14b9689b6d4f4ad5276c88130dc6e449bedc0709 (diff) |
The Formatting String Catastrophe
Diffstat (limited to 'source/core/StarByteArray.cpp')
-rw-r--r-- | source/core/StarByteArray.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/core/StarByteArray.cpp b/source/core/StarByteArray.cpp index 944071b..6414c46 100644 --- a/source/core/StarByteArray.cpp +++ b/source/core/StarByteArray.cpp @@ -85,14 +85,14 @@ void ByteArray::reserve(size_t newCapacity) { if (!m_data) { auto newMem = (char*)Star::malloc(newCapacity); if (!newMem) - throw MemoryException::format("Could not set new ByteArray capacity %s\n", newCapacity); + throw MemoryException::format("Could not set new ByteArray capacity {}\n", newCapacity); m_data = newMem; m_capacity = newCapacity; } else { newCapacity = max({m_capacity * 2, newCapacity, (size_t)8}); auto newMem = (char*)Star::realloc(m_data, newCapacity); if (!newMem) - throw MemoryException::format("Could not set new ByteArray capacity %s\n", newCapacity); + throw MemoryException::format("Could not set new ByteArray capacity {}\n", newCapacity); m_data = newMem; m_capacity = newCapacity; } |