summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Rogers <alan@github.com>2014-07-22 11:25:56 +1000
committerAlan Rogers <alan@github.com>2014-07-22 11:25:56 +1000
commite824e63de6724557946ba155034ff8c864f594d2 (patch)
tree3b12f0fbed1dd48eff29c4fd1d910971ac29b565
parent35b1471f01c42c601804ef579a91778fceebbdab (diff)
downloadlibgit2-e824e63de6724557946ba155034ff8c864f594d2.tar.gz
Remove debug printfs.
-rw-r--r--src/status.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/status.c b/src/status.c
index e1cb60df9..cb2490042 100644
--- a/src/status.c
+++ b/src/status.c
@@ -337,7 +337,6 @@ int git_status_list_new(
if (show != GIT_STATUS_SHOW_INDEX_ONLY) {
if ((error = git_diff_index_to_workdir(
&status->idx2wd, repo, index, &diffopt)) < 0) {
- printf("git_diff_index_to_workdir failed with error %d\n", error);
goto done;
}
@@ -417,7 +416,6 @@ int git_status_foreach_ext(
int error = 0;
if ((error = git_status_list_new(&status, repo, opts)) < 0) {
- printf("git_status_list_new failed with error %d\n", error);
return error;
}