Whitespace.

This commit is contained in:
David Reid
2020-11-21 13:27:49 +10:00
parent 1900da3b2d
commit db91bcca17
+2 -2
View File
@@ -10264,7 +10264,7 @@ int ma_vscprintf(const char* format, va_list args)
return -1;
}
for (;;) {
for (;;) {
char* pNewTempBuffer = (char*)ma_realloc(pTempBuffer, tempBufferCap, NULL); /* TODO: Add support for custom memory allocators? */
if (pNewTempBuffer == NULL) {
ma_free(pTempBuffer, NULL);
@@ -10283,7 +10283,7 @@ int ma_vscprintf(const char* format, va_list args)
/* Buffer wasn't big enough. Ideally it'd be nice to use an error code to know the reason for sure, but this is reliable enough. */
tempBufferCap *= 2;
}
}
return result;
#endif