Skip to content

Commit 655d11c

Browse files
committed
Chore: fix building on Windows
1 parent e32987c commit 655d11c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/options/general.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const char* ffOptionsParseGeneralJsonConfig(FFOptionsGeneral* options, yyjson_va
5353
options->dsForceDrm = yyjson_get_bool(val) ? FF_DS_FORCE_DRM_TYPE_TRUE : FF_DS_FORCE_DRM_TYPE_FALSE;
5454
}
5555
#elif defined(_WIN32)
56-
else if (ffStrEqualsIgnCase(key, "wmiTimeout"))
56+
else if (unsafe_yyjson_equals_str(key, "wmiTimeout"))
5757
options->wmiTimeout = (int32_t) yyjson_get_int(val);
5858
#endif
5959

0 commit comments

Comments
 (0)