summaryrefslogtreecommitdiff
path: root/src/strmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strmap.c')
-rw-r--r--src/strmap.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/strmap.c b/src/strmap.c
index 1b07359d1..b26a13d1f 100644
--- a/src/strmap.c
+++ b/src/strmap.c
@@ -8,7 +8,6 @@
#include "strmap.h"
int git_strmap_next(
- const char **key,
void **data,
git_strmap_iter* iter,
git_strmap *map)
@@ -22,7 +21,6 @@ int git_strmap_next(
continue;
}
- *key = git_strmap_key(map, *iter);
*data = git_strmap_value_at(map, *iter);
++(*iter);