Skip to content

Commit 67fe1e6

Browse files
committed
Windows: fix build
1 parent ea2a26b commit 67fe1e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/common/option.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ static inline void ffOptionInitModuleBaseInfo(
2121
)
2222
{
2323
baseInfo->name = name;
24-
baseInfo->parseCommandOptions = parseCommandOptions;
25-
baseInfo->parseJsonObject = parseJsonObject;
26-
baseInfo->printModule = printModule;
24+
baseInfo->parseCommandOptions = (__typeof__(baseInfo->parseCommandOptions)) parseCommandOptions;
25+
baseInfo->parseJsonObject = (__typeof__(baseInfo->parseJsonObject)) parseJsonObject;
26+
baseInfo->printModule = (__typeof__(baseInfo->printModule)) printModule;
2727
}
2828

2929
typedef struct FFModuleArgs

0 commit comments

Comments
 (0)