summaryrefslogtreecommitdiff
path: root/src/status.c
diff options
context:
space:
mode:
authorLuc Bertrand <grumpy@cacou.net>2011-08-03 13:44:28 +0200
committerLuc Bertrand <grumpy@cacou.net>2011-08-03 13:44:28 +0200
commit8f643ce8e3ec02afa1f145fa820e10a825a4c603 (patch)
tree12eb776d2ad25fb1e8fb320b13707532e249701b /src/status.c
parent9d9e492dc0e61468d1914a449f080a75ee171b4b (diff)
downloadlibgit2-8f643ce8e3ec02afa1f145fa820e10a825a4c603.tar.gz
Remove duplicated sort
Diffstat (limited to 'src/status.c')
-rw-r--r--src/status.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/status.c b/src/status.c
index 50810a057..d9613c129 100644
--- a/src/status.c
+++ b/src/status.c
@@ -61,7 +61,6 @@ static int status_srch(const void *key, const void *array_member)
static int find_status_entry(git_vector *entries, const char *path)
{
- git_vector_sort(entries);
return git_vector_bsearch2(entries, status_srch, path);
}