diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-09-19 13:51:41 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-19 13:51:41 -0700 |
commit | 3d54b93f405c6881ac477c5bfec10802ea53f73d (patch) | |
tree | c75a7d1af7dc617539d05c7eae34df0ef36d8a94 /color.c | |
parent | Merge branch 'ep/use-git-trace-curl-in-tests' into maint (diff) | |
parent | color_parse_mem: initialize "struct color" temporary (diff) | |
download | tgif-3d54b93f405c6881ac477c5bfec10802ea53f73d.tar.xz |
Merge branch 'jk/squelch-false-warning-from-gcc-o3' into maint
Compilation fix.
* jk/squelch-false-warning-from-gcc-o3:
color_parse_mem: initialize "struct color" temporary
error_errno: use constant return similar to error()
Diffstat (limited to 'color.c')
-rw-r--r-- | color.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -215,7 +215,7 @@ int color_parse_mem(const char *value, int value_len, char *dst) /* [fg [bg]] [attr]... */ while (len > 0) { const char *word = ptr; - struct color c; + struct color c = { COLOR_UNSPECIFIED }; int val, wordlen = 0; while (len > 0 && !isspace(word[wordlen])) { |