Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Rogers <alan@github.com>2014-07-23 06:17:02 +0400
committerAlan Rogers <alan@github.com>2014-07-23 06:17:02 +0400
commit85b7268e387eafce2e5cf53a671e6658ae82d6f0 (patch)
tree7fcf1e390374c58c0882d6dfa6169fb73fcfeaac
parent7d0ab0fae04015e0bc66ff16beae495f13969b10 (diff)
undo indentation change in diff_print.cfix-git-status-list-new-unreadable-folder
-rw-r--r--src/diff_print.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/diff_print.c b/src/diff_print.c
index 32b109bb2..fb62a5fc1 100644
--- a/src/diff_print.c
+++ b/src/diff_print.c
@@ -82,15 +82,15 @@ char git_diff_status_char(git_delta_t status)
char code;
switch (status) {
- case GIT_DELTA_ADDED: code = 'A'; break;
- case GIT_DELTA_DELETED: code = 'D'; break;
- case GIT_DELTA_MODIFIED: code = 'M'; break;
- case GIT_DELTA_RENAMED: code = 'R'; break;
- case GIT_DELTA_COPIED: code = 'C'; break;
- case GIT_DELTA_IGNORED: code = 'I'; break;
- case GIT_DELTA_UNTRACKED: code = '?'; break;
- case GIT_DELTA_UNREADABLE: code = 'X'; break;
- default: code = ' '; break;
+ case GIT_DELTA_ADDED: code = 'A'; break;
+ case GIT_DELTA_DELETED: code = 'D'; break;
+ case GIT_DELTA_MODIFIED: code = 'M'; break;
+ case GIT_DELTA_RENAMED: code = 'R'; break;
+ case GIT_DELTA_COPIED: code = 'C'; break;
+ case GIT_DELTA_IGNORED: code = 'I'; break;
+ case GIT_DELTA_UNTRACKED: code = '?'; break;
+ case GIT_DELTA_UNREADABLE: code = 'X'; break;
+ default: code = ' '; break;
}
return code;