summaryrefslogtreecommitdiffstats
path: root/sys/ddb/db_write_cmd.c
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-07-08 10:53:58 +0000
committerbde <bde@FreeBSD.org>1998-07-08 10:53:58 +0000
commitc9efed72bc8dec26d2f4b9e8e0f798fd6c0b09a4 (patch)
tree80c572fd7be896b8222146b062af0b33e4651633 /sys/ddb/db_write_cmd.c
parentb5d9d2e7066642affdab55e8415242ac5619218d (diff)
downloadFreeBSD-src-c9efed72bc8dec26d2f4b9e8e0f798fd6c0b09a4.zip
FreeBSD-src-c9efed72bc8dec26d2f4b9e8e0f798fd6c0b09a4.tar.gz
Use not-so-new printf formats %r and/or %z instead of %n and/or %+x.
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 9881234..26ae37b 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;
OpenPOWER on IntegriCloud