From: Jonas Fonseca Date: Sat, 6 Oct 2007 22:38:53 +0000 (+0200) Subject: Improve sanity check error messages X-Git-Tag: tig-0.10~29 X-Git-Url: https://git.distorted.org.uk/~mdw/tig/commitdiff_plain/e77aa656c6003eb56d55ce514a1826466b351564?ds=inline;hp=f655964f625ffdc0720f600477542602c66a6723 Improve sanity check error messages --- diff --git a/tig.c b/tig.c index 5fb529e..933d083 100644 --- a/tig.c +++ b/tig.c @@ -3441,7 +3441,7 @@ status_enter(struct view *view, struct line *line) break; default: - die("w00t"); + die("line type %d not handled in switch", line->type); } open_view(view, REQ_VIEW_STAGE, OPEN_RELOAD | OPEN_SPLIT); @@ -3495,7 +3495,7 @@ status_update_file(struct view *view, struct status *status, enum line_type type break; default: - die("w00t"); + die("line type %d not handled in switch", type); } pipe = popen(cmd, "w"); @@ -3610,7 +3610,7 @@ status_select(struct view *view, struct line *line) break; default: - die("w00t"); + die("line type %d not handled in switch", line->type); } if (status && status->status == 'U') {