Skip to content

Commit f78f6ce

Browse files
committed
fixup! ClangTidy: avoid reserved identifier names
1 parent 975081a commit f78f6ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/detection/wifi/wifi_linux.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ static const char* detectWifiWithLibnm(FFlist* result)
6161
gboolean return_value;
6262
if (!inst)
6363
return_value = FALSE;
64-
else if (inst->g_class && inst->g_class->g_type == )
64+
else if (inst->g_class && inst->g_class->g_type == type)
6565
return_value = TRUE;
6666
else
67-
return_value = ffg_type_check_instance_is_a (inst, );
67+
return_value = ffg_type_check_instance_is_a (inst, type);
6868
return_value;
6969
}) //NM_IS_DEVICE_WIFI(device)
7070
)

0 commit comments

Comments
 (0)