citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit a0bb3a2930c5a7ae93258a5341ace84c88293b7e
parent f91e82cbc0fef2e1af07120ddf52816051e605b8
Author: Kyle Milz <kyle@0x30.net>
Date:   Sun,  8 Jan 2017 19:26:07 -0700

lib: use C comment

Diffstat:
Mlib.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib.c b/lib.c @@ -102,7 +102,7 @@ align_bytes(size_t unaligned_bytes) page_mask = system_info.dwAllocationGranularity - 1; #else page_mask = getpagesize() - 1; -#endif // _WIN32 +#endif /* _WIN32 */ return (unaligned_bytes + page_mask) & ~page_mask; }