From 926ce2c6c8cd1cf7f4f3636e7cab42fcb5576643 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 20 Jan 2014 18:29:53 +0100 Subject: [PATCH] Silence uninitialized variable warning in tix-execpatch(1). --- tix/tix-execpatch.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tix/tix-execpatch.cpp b/tix/tix-execpatch.cpp index e3ceb896..dcffef3c 100644 --- a/tix/tix-execpatch.cpp +++ b/tix/tix-execpatch.cpp @@ -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 )