aboutsummaryrefslogtreecommitdiffstats
path: root/src/blogc/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/blogc/debug.c')
-rw-r--r--src/blogc/debug.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/blogc/debug.c b/src/blogc/debug.c
index 11e7973..851d4cb 100644
--- a/src/blogc/debug.c
+++ b/src/blogc/debug.c
@@ -7,9 +7,9 @@
*/
#include <stdio.h>
+#include <squareball.h>
#include "template-parser.h"
-#include "../common/utils.h"
#include "debug.h"
@@ -34,9 +34,9 @@ get_operator(blogc_template_operator_t op)
void
-blogc_debug_template(bc_slist_t *ast)
+blogc_debug_template(sb_slist_t *ast)
{
- for (bc_slist_t *tmp = ast; tmp != NULL; tmp = tmp->next) {
+ for (sb_slist_t *tmp = ast; tmp != NULL; tmp = tmp->next) {
blogc_template_node_t *data = tmp->data;
fprintf(stderr, "DEBUG: <TEMPLATE ");
switch (data->type) {