aboutsummaryrefslogtreecommitdiff
path: root/vcal.c
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-02-15 18:48:24 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-02-15 20:03:45 +0100
commitc528ed79f0a359ddfeb3905be07018e668b418a8 (patch)
treebfbf806a2e203e24c1c0b288049eb77ba05325cb /vcal.c
parentImprove FOR macro. (diff)
downloadcalp-c528ed79f0a359ddfeb3905be07018e668b418a8.tar.gz
calp-c528ed79f0a359ddfeb3905be07018e668b418a8.tar.xz
Remove repeat information in invocation of FOR macro.
Diffstat (limited to 'vcal.c')
-rw-r--r--vcal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcal.c b/vcal.c
index dda509db..3961d5d6 100644
--- a/vcal.c
+++ b/vcal.c
@@ -122,7 +122,7 @@ FMT_F(vcomponent) {
seek += sprintf(buf + seek, _RESET);
seek += FMT(TRIE(content_line))(&this->clines, buf + seek);
seek += sprintf(buf + seek, "\nComponents:\n");
- FOR(VECT(vcomponent), vcomponent, comp, &this->components) {
+ FOR(VECT, vcomponent, comp, &this->components) {
seek += FMT(vcomponent)(comp, buf + seek);
}