diff options
author | Vicent Marti <tanoku@gmail.com> | 2014-09-04 18:45:44 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2014-09-09 03:39:16 +0200 |
commit | 9e4855365b920c2a80b0f1ab6937280f0b504334 (patch) | |
tree | 1e38497b5bc339930f183ef0f0bae5429366fea6 /src/print.c | |
parent | 647b15968c95ec268d6d728eea73756c7ba648a8 (diff) |
Rename `inl`
Diffstat (limited to 'src/print.c')
-rw-r--r-- | src/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c index 63f63c8..01e9136 100644 --- a/src/print.c +++ b/src/print.c @@ -117,7 +117,7 @@ extern void print_blocks(block* b, int indent) } // Prettyprint an inline list, for debugging. -extern void print_inlines(struct inl* ils, int indent) +extern void print_inlines(node_inl* ils, int indent) { while(ils != NULL) { for (int i=0; i < indent; i++) { |