diff options
author | Uwe Stuehler <uwe@cvs.openbsd.org> | 2005-05-10 10:50:17 +0000 |
---|---|---|
committer | Uwe Stuehler <uwe@cvs.openbsd.org> | 2005-05-10 10:50:17 +0000 |
commit | 6ab91430a8814cf809851a3dbef7d47d7c1e33c9 (patch) | |
tree | 79f4c5cdbdb88191c1dd0a229bb4e56c6e9f9f95 /sys/ddb | |
parent | b591edece7817e46dd6efa04eec0dac0a75a006e (diff) |
db_printf(s) -> db_printf("%s", s) from NetBSD
Diffstat (limited to 'sys/ddb')
-rw-r--r-- | sys/ddb/db_command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index 734f03ee03e..f650e16d538 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_command.c,v 1.39 2005/01/03 16:49:56 miod Exp $ */ +/* $OpenBSD: db_command.c,v 1.40 2005/05/10 10:50:16 uwe Exp $ */ /* $NetBSD: db_command.c,v 1.20 1996/03/30 22:30:05 christos Exp $ */ /* @@ -554,7 +554,7 @@ db_error(s) char *s; { if (s) - db_printf(s); + db_printf("%s", s); db_flush_lex(); longjmp(db_recover); } |