make compile - fix print formats

This commit is contained in:
jdolecek 2004-01-20 19:58:00 +00:00
parent 6c14651ea0
commit 0fb67944af

View File

@ -260,11 +260,11 @@ int atppc_sc_detach(struct atppc_softc * lsc, int flag)
printf("%s not able to detach child device, ", dev->dv_xname);
if(!(flag & DETACH_FORCE)) {
printf("cannot detach", dev->dv_xname);
printf("cannot detach\n");
return 1;
}
else {
printf("continuing (DETACH_FORCE)\n", dev->dv_xname);
printf("continuing (DETACH_FORCE)\n");
}
}