Fix missing comma in previous commit.

Pointy hat to:	jhb
This commit is contained in:
Dag-Erling Smørgrav 2001-12-28 23:51:48 +00:00
parent 351fdc3fa9
commit c463e1be12
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=88601

View file

@ -487,7 +487,7 @@ pcic_create_event_thread(void *arg)
}
if (kthread_create(pcic_event_thread, h, &h->event_thread,
0 "%s,%s", device_get_name(PCIC_H2SOFTC(h)->dev), cs)) {
0, "%s,%s", device_get_name(PCIC_H2SOFTC(h)->dev), cs)) {
device_printf(PCIC_H2SOFTC(h)->dev,
"cannot create event thread for sock 0x%02x\n", h->sock);
panic("pcic_create_event_thread");