Module Name:    src
Committed By:   isaki
Date:           Fri Apr 29 06:00:33 UTC 2011

Modified Files:
        src/sys/arch/x68k/stand/newdisk: newdisk.c

Log Message:
Add a missing printf argument..


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/x68k/stand/newdisk/newdisk.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/x68k/stand/newdisk/newdisk.c
diff -u src/sys/arch/x68k/stand/newdisk/newdisk.c:1.7 src/sys/arch/x68k/stand/newdisk/newdisk.c:1.8
--- src/sys/arch/x68k/stand/newdisk/newdisk.c:1.7	Fri Apr 29 05:59:53 2011
+++ src/sys/arch/x68k/stand/newdisk/newdisk.c	Fri Apr 29 06:00:33 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: newdisk.c,v 1.7 2011/04/29 05:59:53 isaki Exp $	*/
+/*	$NetBSD: newdisk.c,v 1.8 2011/04/29 06:00:33 isaki Exp $	*/
 
 /*-
  * Copyright (c) 1999 Minoura Makoto
@@ -116,7 +116,7 @@
 		err(1, "reading %s", dev);
 	if (strncmp(buf, "X68SCSI1", 8) == 0 && !force)
 		errx(1, "%s is already marked.  "
-		        "Use -f to overwrite the existing mark.");
+		        "Use -f to overwrite the existing mark.", dev);
 	if (check_only)
 		return 0;
 

Reply via email to