Silence uninitialized variable warning in tix-execpatch(1).

This commit is contained in:
Jonas 'Sortie' Termansen 2014-01-20 18:29:53 +01:00
parent 061eddff91
commit 926ce2c6c8
1 changed files with 1 additions and 0 deletions

View File

@ -118,6 +118,7 @@ bool execpatch(FILE* input, const char* input_path, bool check)
default:
error(1, errno, "%s:%zu:%zu: parse error, expected '-' or '+'",
input_path, line, column);
__builtin_unreachable();
}
parse_fixed("x -- '", input, input_path, &line, &column);
while ( true )