From 3a51d216f279793fdbc18a9c95e367802efd4883 Mon Sep 17 00:00:00 2001 From: midipix Date: Fri, 6 May 2016 17:03:10 -0400 Subject: code maintenance: mark unused parameters. --- src/output/amgc_output_compound.c | 2 ++ src/output/amgc_output_typedef.c | 4 ++++ 2 files changed, 6 insertions(+) (limited to 'src/output') diff --git a/src/output/amgc_output_compound.c b/src/output/amgc_output_compound.c index fc95af7..312d475 100644 --- a/src/output/amgc_output_compound.c +++ b/src/output/amgc_output_compound.c @@ -279,6 +279,8 @@ static int output_compound_entity( { struct amgc_layout elayout; + (void)uctx; + if (layout && layout->symwidth) return output_compound(aentity->entity,0,layout,fout); diff --git a/src/output/amgc_output_typedef.c b/src/output/amgc_output_typedef.c index 9af4329..f7b39d4 100644 --- a/src/output/amgc_output_typedef.c +++ b/src/output/amgc_output_typedef.c @@ -21,6 +21,8 @@ static int output_atomic_typedef( int i; const char * reftype; + (void)fout; + reftype = get_atomic_kind_name(aentity->reftype->atomic.akind); if (fprintf(stdout,"typedef %s ",reftype) < 0) @@ -44,6 +46,8 @@ int amgc_output_typedef( { int ret = 0; + (void)uctx; + if (layout && layout->header && (fputs(layout->header,fout) < 0)) return -1; -- cgit v1.2.3