We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c451173 commit 4c9f424Copy full SHA for 4c9f424
sound/firewire/isight.c
@@ -638,13 +638,13 @@ static int isight_probe(struct fw_unit *unit,
638
639
card->private_free = isight_card_free;
640
641
- strscpy(card->driver, "iSight");
642
- strscpy(card->shortname, "Apple iSight");
+ strcpy(card->driver, "iSight");
+ strcpy(card->shortname, "Apple iSight");
643
snprintf(card->longname, sizeof(card->longname),
644
"Apple iSight (GUID %08x%08x) at %s, S%d",
645
fw_dev->config_rom[3], fw_dev->config_rom[4],
646
dev_name(&unit->device), 100 << fw_dev->max_speed);
647
- strspy(card->mixername, "iSight");
+ strcpy(card->mixername, "iSight");
648
649
err = isight_create_pcm(isight);
650
if (err < 0)
0 commit comments