From 59fcebaa89d6ebdadf59c08c3bee030ce84765a1 Mon Sep 17 00:00:00 2001 From: Alan Rogers Date: Fri, 30 May 2014 16:22:13 -0700 Subject: [PATCH] Use 'X' for unreadable status. --- tests/status/status_helpers.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/status/status_helpers.c b/tests/status/status_helpers.c index 088279252..5d13caa9a 100644 --- a/tests/status/status_helpers.c +++ b/tests/status/status_helpers.c @@ -82,6 +82,9 @@ int cb_status__print( if (status_flags & GIT_STATUS_IGNORED) { wstatus = 'I'; wcount++; } + if (status_flags & GIT_STATUS_WT_UNREADABLE) { + wstatus = 'X'; wcount++; + } fprintf(stderr, "%c%c %s (%d/%d%s)\n", istatus, wstatus, path, icount, wcount,