diff options
| author | Junio C Hamano <gitster@pobox.com> | 2014-06-16 12:18:55 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2014-06-16 12:18:55 -0700 |
| commit | c6d3abbf994aaef6c56512f2afe2236310e08e39 (patch) | |
| tree | 78caa8a86a2bb1b14c493e3f4b4caf9b483d2012 /string-list.h | |
| parent | bbfa0cc7f8fdfb323ad108bb1dbb7543558cf864 (diff) | |
| parent | acb3d22264fd3736f95f71aa38e1d6fa01f5e9e1 (diff) | |
| download | git-c6d3abbf994aaef6c56512f2afe2236310e08e39.tar.xz | |
Merge branch 'ta/string-list-init'
* ta/string-list-init:
string-list: spell all values out that are given to a string_list initializer
Diffstat (limited to 'string-list.h')
| -rw-r--r-- | string-list.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/string-list.h b/string-list.h index de6769c92d..dd5e294465 100644 --- a/string-list.h +++ b/string-list.h @@ -15,8 +15,8 @@ struct string_list { compare_strings_fn cmp; /* NULL uses strcmp() */ }; -#define STRING_LIST_INIT_NODUP { NULL, 0, 0, 0 } -#define STRING_LIST_INIT_DUP { NULL, 0, 0, 1 } +#define STRING_LIST_INIT_NODUP { NULL, 0, 0, 0, NULL } +#define STRING_LIST_INIT_DUP { NULL, 0, 0, 1, NULL } void print_string_list(const struct string_list *p, const char *text); void string_list_clear(struct string_list *list, int free_util); |
