diff options
author | kris <kris@FreeBSD.org> | 2001-07-19 02:05:00 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-07-19 02:05:00 +0000 |
commit | 76deaa008ee93535249ec17a03f64f1ef46c1105 (patch) | |
tree | e0cc8fa9c49c59ce7a346516042d041afb588840 /sys/ddb | |
parent | 5f6815f5a2066cb706780f466cefbb34e21687b7 (diff) | |
download | FreeBSD-src-76deaa008ee93535249ec17a03f64f1ef46c1105.zip FreeBSD-src-76deaa008ee93535249ec17a03f64f1ef46c1105.tar.gz |
Quiet a variable format-string warning.
MFC after: 1 week
Diffstat (limited to 'sys/ddb')
-rw-r--r-- | sys/ddb/db_command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index dfcc9c3..b97c05a 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -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); } |