aboutsummaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
Diffstat (limited to 'html.c')
-rw-r--r--html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/html.c b/html.c
index f916ec0..cdafd64 100644
--- a/html.c
+++ b/html.c
@@ -162,8 +162,8 @@ struct html_node *html_node_add_child(struct html_node *const n,
return child;
}
-int serialize_node(struct dynstr *const d, const struct html_node *const n,
- const unsigned level)
+static int serialize_node(struct dynstr *const d,
+ const struct html_node *const n, const unsigned level)
{
for (unsigned i = 0; i < level; i++)
dynstr_append(d, "\t");