diff options
Diffstat (limited to 'cgit.c')
-rw-r--r-- | cgit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -765,7 +765,7 @@ static char *build_snapshot_setting(int bitmap) | |||
765 | struct strbuf result = STRBUF_INIT; | 765 | struct strbuf result = STRBUF_INIT; |
766 | 766 | ||
767 | for (f = cgit_snapshot_formats; f->suffix; f++) { | 767 | for (f = cgit_snapshot_formats; f->suffix; f++) { |
768 | if (f->bit & bitmap) { | 768 | if (cgit_snapshot_format_bit(f) & bitmap) { |
769 | if (result.len) | 769 | if (result.len) |
770 | strbuf_addch(&result, ' '); | 770 | strbuf_addch(&result, ' '); |
771 | strbuf_addstr(&result, f->suffix); | 771 | strbuf_addstr(&result, f->suffix); |