Skip to content

Commit 278e45c

Browse files
committed
Merge pull request stepcode#177 from mpictor/review/build_fix
Fixed build problem in print_typechain function.
2 parents 1d34753 + a9c64bc commit 278e45c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/fedex_plus/classes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2070,7 +2070,7 @@ void print_typechain( FILES * files, const Type t, char * buf, Schema schema, co
20702070
sprintf( buf, "%s%d", TD_PREFIX, count );
20712071

20722072
/* Types */
2073-
fprintf( f, " %s::schema->AddUnnamedType(%s%d);\n", SCHEMAget_name( schema ), TD_PREFIX, count );
2073+
fprintf( files->init, " %s::schema->AddUnnamedType(%s%d);\n", SCHEMAget_name( schema ), TD_PREFIX, count );
20742074
}
20752075

20762076
/**************************************************************//**

0 commit comments

Comments
 (0)