diff options
author | Tharre <tharre3@gmail.com> | 2018-11-18 15:30:24 +0100 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-11-18 15:37:50 +0100 |
commit | daee85f9b3ecbcbda5e1a9599a27266928e887b3 (patch) | |
tree | 12a49bd725e489b57aba68b34582007f2b101e95 /src/util.c | |
parent | 2bb922a7cc5f31551b9c5b09d3141dfab4633a39 (diff) | |
download | redo-daee85f9b3ecbcbda5e1a9599a27266928e887b3.tar.gz redo-daee85f9b3ecbcbda5e1a9599a27266928e887b3.tar.xz redo-daee85f9b3ecbcbda5e1a9599a27266928e887b3.zip |
Better concat that doesn't need a size argument
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ char *xstrdup(const char *str) { } /* For concating multiple strings into a single larger one. */ -char *concat(size_t count, ...) { +char *concat_(size_t count, ...) { assert(count > 0); va_list ap, ap2; va_start(ap, count); |