summaryrefslogtreecommitdiffstats
path: root/builtin
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-09-07 01:57:05 +0200
committerJunio C Hamano <gitster@pobox.com>2010-09-07 01:57:05 +0200
commit79d532c36a5d275ed237e196f36054f3c45d70aa (patch)
treed4a8148f182e575356d6877d57ddae71ec70d680 /builtin
parentt3404 & t7508: cd inside subshell instead of around (diff)
parentbuiltin/clean.c: Use STRING_LIST_INIT_NODUP. (diff)
downloadgit-79d532c36a5d275ed237e196f36054f3c45d70aa.tar.xz
git-79d532c36a5d275ed237e196f36054f3c45d70aa.zip
Merge branch 'jh/clean-exclude'
* jh/clean-exclude: builtin/clean.c: Use STRING_LIST_INIT_NODUP.
Diffstat (limited to 'builtin')
-rw-r--r--builtin/clean.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/clean.c b/builtin/clean.c
index b508d2cab4..c8798f549e 100644
--- a/builtin/clean.c
+++ b/builtin/clean.c
@@ -44,7 +44,7 @@ int cmd_clean(int argc, const char **argv, const char *prefix)
struct dir_struct dir;
static const char **pathspec;
struct strbuf buf = STRBUF_INIT;
- struct string_list exclude_list = { NULL, 0, 0, 0 };
+ struct string_list exclude_list = STRING_LIST_INIT_NODUP;
const char *qname;
char *seen = NULL;
struct option options[] = {