diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-08-02 17:11:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-02 17:11:58 +0200 |
commit | ff351105fb6c292761d2c450bf871b6394c3a25b (patch) | |
tree | 90a2eb3220fcffa8421bd5e6ff4b6f6bf3885ff0 /lib/system/osalloc.nim | |
parent | 14085a70afb5c8c2a167453d1fb176caa8ebca9b (diff) | |
parent | b3846124e6b96c6ac292324215dcfe98d33849a9 (diff) | |
download | Nim-ff351105fb6c292761d2c450bf871b6394c3a25b.tar.gz |
Merge pull request #4548 from arnetheduck/gc-cleanup
clean up a few stray c_stdout's in gc debug code
Diffstat (limited to 'lib/system/osalloc.nim')
-rw-r--r-- | lib/system/osalloc.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/osalloc.nim b/lib/system/osalloc.nim index e864253b6..b07a362a0 100644 --- a/lib/system/osalloc.nim +++ b/lib/system/osalloc.nim @@ -68,7 +68,7 @@ when defined(emscripten): mmapDescr.realSize = realSize mmapDescr.realPointer = realPointer - #c_fprintf(c_stdout, "[Alloc] size %d %d realSize:%d realPos:%d\n", block_size, cast[int](result), realSize, cast[int](realPointer)) + #c_fprintf(stdout, "[Alloc] size %d %d realSize:%d realPos:%d\n", block_size, cast[int](result), realSize, cast[int](realPointer)) proc osTryAllocPages(size: int): pointer = osAllocPages(size) |