diff options
author | gibbs <gibbs@FreeBSD.org> | 1998-09-15 22:05:44 +0000 |
---|---|---|
committer | gibbs <gibbs@FreeBSD.org> | 1998-09-15 22:05:44 +0000 |
commit | 77349ff3899e25787526114a5f5460ef796106ec (patch) | |
tree | 752d76e17b87a39b4042c3d7ba692310283cb1c6 /sys/cam/cam_xpt.c | |
parent | 92f218ee1779c4b4c6be5b93d1976dcd148b8c6c (diff) | |
download | FreeBSD-src-77349ff3899e25787526114a5f5460ef796106ec.zip FreeBSD-src-77349ff3899e25787526114a5f5460ef796106ec.tar.gz |
Correct printf format bugs.
Diffstat (limited to 'sys/cam/cam_xpt.c')
-rw-r--r-- | sys/cam/cam_xpt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/cam/cam_xpt.c b/sys/cam/cam_xpt.c index 11a2afe..bc7e7c6 100644 --- a/sys/cam/cam_xpt.c +++ b/sys/cam/cam_xpt.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: cam_xpt.c,v 1.1 1998/09/15 06:33:23 gibbs Exp $ */ #include <sys/param.h> #include <sys/systm.h> @@ -5360,7 +5360,7 @@ xptfinishconfigfunc(struct cam_ed *device, void *arg) device->target->target_id, device->lun_id)) != CAM_REQ_CMP) { printf("xptfinishconfig: xpt_create_path failed with status" - " %#x, halting bus configuration\n"); + " %#x, halting bus configuration\n", status); return(0); } |