fixed SIZE_MAX macro

AuthorKonata <konata@posteo.jp>
Date
Commit157cf96077ee8a42cd06226805697017714d6221
Parentc438d8f
1 file changed, 1 insertion(+), 1 deletion(-)
Minclude/cutils/common.h
@@ -4,7 +4,7 @@
44 #include <stddef.h>
55 #include <cutils/hedley.h>
66 #ifndef SIZE_MAX
7- #define SIZE_MAX (size_t)-1;
7+ #define SIZE_MAX ((size_t)(-1))
88 #endif
99
1010 #if __STDC_VERSION__ >= 199901L