aboutsummaryrefslogtreecommitdiff
path: root/lib/libdisk/chunk.c
diff options
context:
space:
mode:
authorJohn Polstra <jdp@FreeBSD.org>1997-11-18 05:34:45 +0000
committerJohn Polstra <jdp@FreeBSD.org>1997-11-18 05:34:45 +0000
commiteb64128d8aa01f00dcad3fdc0e519a99d3ac4bd1 (patch)
treeb5544bc886b21696212bed8a05958fa80feff7dc /lib/libdisk/chunk.c
parent3359c58c41acad4d517143639c6d42452656e2e2 (diff)
downloadsrc-eb64128d8aa01f00dcad3fdc0e519a99d3ac4bd1.tar.gz
src-eb64128d8aa01f00dcad3fdc0e519a99d3ac4bd1.zip
Fix erroneous format string.
Notes
Notes: svn path=/head/; revision=31222
Diffstat (limited to 'lib/libdisk/chunk.c')
-rw-r--r--lib/libdisk/chunk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libdisk/chunk.c b/lib/libdisk/chunk.c
index a0ea6aa5106d..10cc3563c283 100644
--- a/lib/libdisk/chunk.c
+++ b/lib/libdisk/chunk.c
@@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
- * $Id$
+ * $Id: chunk.c,v 1.18 1997/02/22 15:06:30 peter Exp $
*
*/
@@ -66,7 +66,7 @@ Find_Mother_Chunk(struct chunk *chunks, u_long offset, u_long end, chunk_e type)
}
return 0;
default:
- warn("Unsupported mother (0x%x) in Find_Mother_Chunk");
+ warn("Unsupported mother type in Find_Mother_Chunk");
return 0;
}
}