aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--linked_list.inc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/linked_list.inc.h b/linked_list.inc.h
index 8de8d06b..831da5fb 100644
--- a/linked_list.inc.h
+++ b/linked_list.inc.h
@@ -165,11 +165,12 @@ int RESET(LLIST(TYPE)) ( LLIST(TYPE)* llist ) {
return 0;
}
-FMT_F(LLIST (TYPE)) {
+FMT_F(LLIST(TYPE)) {
int seek = 0;
fmtf("(");
FOR(LLIST(TYPE), link, this) {
seek += FMT(TYPE)(link->value, buf + seek);
+ fmtf(" ");
}
fmtf(")");