diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2010-08-12 17:11:15 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-08-12 15:44:51 -0700 |
commit | 987460611ab08ebac83ead9a5ee316d3b3823e7f (patch) | |
tree | be489213bae1efc32ec9e82e0f22ce55a98065a7 /cache.h | |
parent | t/t7003: replace \t with literal tab in sed expression (diff) | |
download | tgif-987460611ab08ebac83ead9a5ee316d3b3823e7f.tar.xz |
Standardize do { ... } while (0) style
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -449,7 +449,7 @@ extern int init_db(const char *template_dir, unsigned int flags); alloc = alloc_nr(alloc); \ x = xrealloc((x), alloc * sizeof(*(x))); \ } \ - } while(0) + } while (0) /* Initialize and use the cache information */ extern int read_index(struct index_state *); |