summary refs log tree commit diff
path: root/lisc/main.c
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-08 11:05:10 -0500
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-08 11:05:10 -0500
commit995deebfd7cc044edddeb6071770425b9d96b6ad (patch)
treee1850ca61d31649cedfe8ac25e0a4dba9d9df672 /lisc/main.c
parent096b4476997139fa4fbe9f4c2026fde868da43fd (diff)
downloadroux-995deebfd7cc044edddeb6071770425b9d96b6ad.tar.gz
add a default align for data defs
Diffstat (limited to 'lisc/main.c')
-rw-r--r--lisc/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/main.c b/lisc/main.c
index a8fa105..026a8b0 100644
--- a/lisc/main.c
+++ b/lisc/main.c
@@ -23,7 +23,7 @@ data(Dat *d)
 	if (dbg)
 		return;
 	if (d->type == DEnd) {
-		fputs("/* end data */\n", outf);
+		fputs("/* end data */\n\n", outf);
 		freeall();
 	}
 	emitdat(d, outf);