summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorMichael Haggerty <mhagger@alum.mit.edu>2015-07-28 21:08:19 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-07-28 21:39:21 (GMT)
commite286542de0c27e2c53d9a1ec44897dbef5de80dc (patch)
treeee9019ddfd642f1e99c5e1fd152ccb23c3a0a010 /builtin
parentc26f7d7b268c14f9ee7fa9cbeaad3bc890526d49 (diff)
downloadgit-e286542de0c27e2c53d9a1ec44897dbef5de80dc.zip
git-e286542de0c27e2c53d9a1ec44897dbef5de80dc.tar.gz
git-e286542de0c27e2c53d9a1ec44897dbef5de80dc.tar.bz2
get_remote_group(): rename local variable "space" to "wordlen"
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/fetch.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/builtin/fetch.c b/builtin/fetch.c
index 9f7fe98..680ba66 100644
--- a/builtin/fetch.c
+++ b/builtin/fetch.c
@@ -976,13 +976,13 @@ static int get_remote_group(const char *key, const char *value, void *priv)
if (starts_with(key, "remotes.") &&
!strcmp(key + 8, g->name)) {
/* split list by white space */
- int space = strcspn(value, " \t\n");
+ size_t wordlen = strcspn(value, " \t\n");
while (*value) {
- if (space >= 1)
+ if (wordlen >= 1)
string_list_append(g->list,
- xstrndup(value, space));
- value += space + (value[space] != '\0');
- space = strcspn(value, " \t\n");
+ xstrndup(value, wordlen));
+ value += wordlen + (value[wordlen] != '\0');
+ wordlen = strcspn(value, " \t\n");
}
}