From ce98e9ad974910855c603fb7231c98ed0f1e6526 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Tue, 8 Sep 2015 19:41:47 -0700 Subject: [PATCH] Fixed Linux build. --- include/bx/os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bx/os.h b/include/bx/os.h index a554516..7baad6f 100644 --- a/include/bx/os.h +++ b/include/bx/os.h @@ -120,7 +120,7 @@ namespace bx } long pages = 0; - fscanf(file, "%*s%ld", &pages) + fscanf(file, "%*s%ld", &pages); fclose(file); return pages * sysconf(_SC_PAGESIZE); #elif BX_PLATFORM_OSX