[qfcc] Handle unsigned int correctly

I'd missed the one case, so such declarations wound up just `int`
This commit is contained in:
Bill Currie 2024-12-05 13:12:27 +09:00
parent b4387cd881
commit 639818cca5

View file

@ -534,6 +534,8 @@ default_type (specifier_t spec, const symbol_t *sym)
spec.type = &type_ulong;
} else if (spec.is_long) {
spec.type = &type_long;
} else if (spec.is_unsigned) {
spec.type = &type_uint;
}
}
} else {