1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-04 12:52:15 +00:00

Quiet a variable format-string warning.

MFC after:	1 week
This commit is contained in:
Kris Kennaway 2001-07-19 02:05:00 +00:00
parent c0e30a2b1f
commit 58d9a05948
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=79884

View File

@ -472,7 +472,7 @@ db_error(s)
char *s;
{
if (s)
db_printf(s);
db_printf("%s", s);
db_flush_lex();
longjmp(db_jmpbuf, 1);
}