aboutsummaryrefslogtreecommitdiff
path: root/src/ast_render.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2016-01-28 11:54:34 -0700
committerAndrew Kelley <superjoe30@gmail.com>2016-01-28 11:54:34 -0700
commitf1c5d3d3a1ffd479acecd32bbd0496824316c6a6 (patch)
treefb591620102897312e116c3af62dc4cefcc4ab93 /src/ast_render.cpp
parent474340a0031c9b3c8ce0d97c2cc36d5327c4e304 (diff)
downloadzig-f1c5d3d3a1ffd479acecd32bbd0496824316c6a6.tar.gz
zig-f1c5d3d3a1ffd479acecd32bbd0496824316c6a6.zip
add parseh tests
Diffstat (limited to 'src/ast_render.cpp')
-rw-r--r--src/ast_render.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast_render.cpp b/src/ast_render.cpp
index a1043377c8..8ddfe03e34 100644
--- a/src/ast_render.cpp
+++ b/src/ast_render.cpp
@@ -672,7 +672,7 @@ static void render_node(AstRender *ar, AstNode *node) {
}
ar->indent -= ar->indent_size;
- fprintf(ar->f, "}\n");
+ fprintf(ar->f, "}");
break;
}
case NodeTypeStructField: