From c9efed72bc8dec26d2f4b9e8e0f798fd6c0b09a4 Mon Sep 17 00:00:00 2001 From: bde Date: Wed, 8 Jul 1998 10:53:58 +0000 Subject: Use not-so-new printf formats %r and/or %z instead of %n and/or %+x. --- sys/ddb/db_write_cmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/ddb/db_write_cmd.c') 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; -- cgit v1.1