diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-06-13 16:39:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-13 16:39:45 +0200 |
commit | 58bb12d5ce431fce70a22fa69b80bf021e2d1ce6 (patch) | |
tree | 224bf095ed931097abd752aa71a031d493d29692 | |
parent | 4fca8c94a2ce4d2d4a9ae59fbb5668f7a2cebc67 (diff) | |
parent | 84876edbcbffa86831ed52cff678ba039d2ac118 (diff) | |
download | Nim-58bb12d5ce431fce70a22fa69b80bf021e2d1ce6.tar.gz |
Merge pull request #4323 from yglukhov/emscripten-fix
Fixed emscripten compilation
-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 62e36bfd6..de26f52d9 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(c_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) |