1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-01 05:03:53 +00:00

Minor change: adapted the spaces to tabs at the just inserted line as in tracy_rpmalloc.cpp tabs are used as indentation.

This commit is contained in:
Till Rathmann 2018-08-02 11:53:04 +02:00
parent 4968717313
commit c71d99c134

View File

@ -1815,7 +1815,7 @@ _memory_unmap_os(void* address, size_t size, size_t offset, int release) {
#if PLATFORM_WINDOWS #if PLATFORM_WINDOWS
if (!VirtualFree(address, release ? 0 : size, release ? MEM_RELEASE : MEM_DECOMMIT)) { if (!VirtualFree(address, release ? 0 : size, release ? MEM_RELEASE : MEM_DECOMMIT)) {
DWORD err = GetLastError(); DWORD err = GetLastError();
(void)err; (void)err;
assert("Failed to unmap virtual memory block" && 0); assert("Failed to unmap virtual memory block" && 0);
} }
#else #else