We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae71ccf commit 1b3d92eCopy full SHA for 1b3d92e
src/gasman.c
@@ -965,9 +965,9 @@ static TNumFreeFuncBags TabFreeFuncBags[256];
965
966
void InitFreeFuncBag (
967
UInt type,
968
- TNumFreeFuncBags free_func )
+ TNumFreeFuncBags free_function )
969
{
970
- TabFreeFuncBags[type] = free_func;
+ TabFreeFuncBags[type] = free_function;
971
}
972
973
src/gasman.h
@@ -933,7 +933,7 @@ typedef void (* TNumFreeFuncBags ) (
933
934
extern void InitFreeFuncBag (
935
936
- TNumFreeFuncBags free_func );
+ TNumFreeFuncBags free_function );
937
938
939
/****************************************************************************
0 commit comments