diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-02-10 17:42:04 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-10 22:26:37 -0800 |
commit | ba19a808aa871f0eb20aaeeb205e086b04b726dc (patch) | |
tree | a11ccc1b11ef0fff5e77d1a41eab2991b10e8ae9 /tree.c | |
parent | 057e71384a0eff83236268dcd3ff7ebc7789de74 (diff) | |
download | git-ba19a808aa871f0eb20aaeeb205e086b04b726dc.tar.gz git-ba19a808aa871f0eb20aaeeb205e086b04b726dc.tar.xz |
Drop double-semicolon in C
The worst offenders are "continue;;" and "break;;" in switch statements.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'tree.c')
-rw-r--r-- | tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ int read_tree_recursive(struct tree *tree, case 0: continue; case READ_TREE_RECURSIVE: - break;; + break; default: return -1; } |