aboutsummaryrefslogtreecommitdiff
path: root/vcal.c
diff options
context:
space:
mode:
Diffstat (limited to 'vcal.c')
-rw-r--r--vcal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcal.c b/vcal.c
index a61d3d9f..e1df1f30 100644
--- a/vcal.c
+++ b/vcal.c
@@ -178,7 +178,7 @@ FMT_F(key_val) {
}
int DEEP_COPY(key_val) (key_val* dest, key_val* src) {
- strbuf_copy(&dest->key, &src->key);
- strbuf_copy(&dest->val, &src->val);
+ DEEP_COPY(strbuf)(&dest->key, &src->key);
+ DEEP_COPY(strbuf)(&dest->val, &src->val);
return 0;
}