Use 'X' for unreadable status.

This commit is contained in:
Alan Rogers 2014-05-30 16:22:13 -07:00
parent 66271925a1
commit 59fcebaa89

View File

@ -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,