aboutsummaryrefslogtreecommitdiff
path: root/strbuf.c
diff options
context:
space:
mode:
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