aboutsummaryrefslogtreecommitdiff
path: root/strbuf.c
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-02-08 21:13:08 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-02-08 21:23:31 +0100
commit8e2d4025fc02e07866869a33ccc686f87389cb36 (patch)
tree2af14e4713d88024597add14106d565055317cb4 /strbuf.c
parentMade root of graphviz output gray. (diff)
downloadcalp-8e2d4025fc02e07866869a33ccc686f87389cb36.tar.gz
calp-8e2d4025fc02e07866869a33ccc686f87389cb36.tar.xz
V{calendar,event} merged into vcomponent, making it symmetic.
Diffstat (limited to 'strbuf.c')
-rw-r--r--strbuf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/strbuf.c b/strbuf.c
index bf40d7fe..38aca4f4 100644
--- a/strbuf.c
+++ b/strbuf.c
@@ -51,7 +51,8 @@ FREE_F(strbuf) {
int strbuf_append(strbuf* s, char c) {
#ifdef SAFE_STR
if (s->len > s->alloc) {
- ERR("Not enough memmory allocated");
+ // printf("s->len = %i, s->alloc = %i\n", s->len, s->alloc);
+ // ERR("Not enough memmory allocated");
return 1;
}
#endif