From: Michael Haggerty Date: Tue, 28 Jul 2015 21:08:19 +0000 (+0200) Subject: get_remote_group(): rename local variable "space" to "wordlen" X-Git-Tag: v2.6.0-rc0~69^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e286542de0c27e2c53d9a1ec44897dbef5de80dc;p=thirdparty%2Fgit.git get_remote_group(): rename local variable "space" to "wordlen" Signed-off-by: Michael Haggerty Signed-off-by: Junio C Hamano --- diff --git a/builtin/fetch.c b/builtin/fetch.c index 9f7fe983a9..680ba66e53 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"); } }