mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
assemble.c: quiet warning
Clear an uninitialized variable warning. The case can't actually happen, but the compiler doesn't know that. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
77df046f0b
commit
ed3e84f9cd
@ -2107,6 +2107,9 @@ static enum match_result matches(const struct itemplate *itemp,
|
||||
case 64:
|
||||
asize = BITS64;
|
||||
break;
|
||||
default:
|
||||
asize = 0;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
|
Loading…
x
Reference in New Issue
Block a user