sonarlint vid_table.c

This commit is contained in:
Jasmine Iwanek
2023-07-30 19:25:07 -04:00
parent 478aa11172
commit 879f707f19

View File

@@ -412,7 +412,7 @@ video_get_video_from_internal_name(char *s)
int c = 0;
while (video_cards[c].device != NULL) {
if (!strcmp((char *) video_cards[c].device->internal_name, s))
if (!strcmp(video_cards[c].device->internal_name, s))
return c;
c++;
}