1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-05 12:56:08 +00:00

Fix erroneous format string.

This commit is contained in:
John Polstra 1997-11-18 05:34:45 +00:00
parent 3359c58c41
commit eb64128d8a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=31222

View File

@ -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;
}
}