Standardize do { ... } while (0) style

Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jonathan Nieder
2010-08-12 17:11:15 -05:00
committed by Junio C Hamano
parent 0d1d6e50cf
commit 987460611a
4 changed files with 10 additions and 10 deletions

View File

@ -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 *);