aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb/db_write_cmd.c
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-07-08 10:53:58 +0000
committerBruce Evans <bde@FreeBSD.org>1998-07-08 10:53:58 +0000
commit596dfc04ed90ad80804eb248089e48c83777b5c6 (patch)
tree0bd669935c9f950fee5b68d9c62e2c5e5fc4ad66 /sys/ddb/db_write_cmd.c
parente0c38587af87a66ef1693b5e4c95d386079a909f (diff)
downloadsrc-596dfc04ed90ad80804eb248089e48c83777b5c6.tar.gz
src-596dfc04ed90ad80804eb248089e48c83777b5c6.zip
Use not-so-new printf formats %r and/or %z instead of %n and/or %+x.
Notes
Notes: svn path=/head/; revision=37506
Diffstat (limited to 'sys/ddb/db_write_cmd.c')
-rw-r--r--sys/ddb/db_write_cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_write_cmd.c b/sys/ddb/db_write_cmd.c
index 9881234a4210..26ae37b429d9 100644
--- a/sys/ddb/db_write_cmd.c
+++ b/sys/ddb/db_write_cmd.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: db_write_cmd.c,v 1.9 1997/02/22 09:28:34 peter Exp $
+ * $Id: db_write_cmd.c,v 1.10 1997/06/14 11:52:37 bde Exp $
*/
/*
@@ -78,7 +78,7 @@ db_write_cmd(address, have_addr, count, modif)
while (db_expression(&new_value)) {
old_value = db_get_value(addr, size, FALSE);
db_printsym(addr, DB_STGY_ANY);
- db_printf("\t\t%#8n\t=\t%#8n\n", old_value, new_value);
+ db_printf("\t\t%#8r\t=\t%#8r\n", old_value, new_value);
db_put_value(addr, size, new_value);
addr += size;