Skip to content
Snippets Groups Projects
Commit 043cad6c authored by Virgile Prevosto's avatar Virgile Prevosto Committed by Andre Maroneze
Browse files

[machdep] fix inverted condition

parent 319b722d
No related branches found
No related tags found
No related merge requests found
...@@ -171,8 +171,8 @@ let gen_va_list_repr fmt mach = ...@@ -171,8 +171,8 @@ let gen_va_list_repr fmt mach =
let gen_char_unsigned_flag fmt mach = let gen_char_unsigned_flag fmt mach =
let macro = "__CHAR_UNSIGNED__" in let macro = "__CHAR_UNSIGNED__" in
if mach.char_is_unsigned then gen_undef fmt macro if mach.char_is_unsigned then gen_define_string fmt macro "1"
else gen_define_string fmt macro "1" else gen_undef fmt macro
let gen_sizeof_std fmt mach = let gen_sizeof_std fmt mach =
gen_sizeof fmt "SHORT" mach.sizeof_short; gen_sizeof fmt "SHORT" mach.sizeof_short;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment