From e77aa656c6003eb56d55ce514a1826466b351564 Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Sun, 7 Oct 2007 00:38:53 +0200 Subject: [PATCH] Improve sanity check error messages --- tig.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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') { -- 2.32.0.93.g670b81a890