diff --git a/tools/qfcc/source/type.c b/tools/qfcc/source/type.c index d10f42960..18ee5542e 100644 --- a/tools/qfcc/source/type.c +++ b/tools/qfcc/source/type.c @@ -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 {