Skip to content

Commit 6e6b8ca

Browse files
committed
[warning-fix][type-returns-to-int]
1 parent 19e501a commit 6e6b8ca

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/exppp/exppp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ SCOPEalgs_out( Scope s, int level ) {
574574
SCOPEprocs_out( s, level );
575575
}
576576

577-
static
577+
static int
578578
min( int a, int b, int c ) {
579579
if( a < b ) {
580580
return ( ( a < c ) ? a : c );
@@ -849,7 +849,7 @@ SCOPElocals_out( Scope s, int level ) {
849849
raw( "%*sEND_LOCAL;\n", level, "" );
850850
}
851851

852-
void LOOPout( struct Loop_ *loop, int level ) {
852+
LOOPout( struct Loop_ *loop, int level ) {
853853
Variable v;
854854

855855
raw( "%*sREPEAT", level, "" );

0 commit comments

Comments
 (0)