mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-07 01:42:04 +00:00
[qfcc] Handle unsigned int
correctly
I'd missed the one case, so such declarations wound up just `int`
This commit is contained in:
parent
b4387cd881
commit
639818cca5
1 changed files with 2 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue