Fix a printf format.

This commit is contained in:
thorpej 2000-05-23 06:06:10 +00:00
parent 75dbbed64a
commit 20c7af8a35
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: db_command.c,v 1.41 2000/05/22 14:49:10 jhawk Exp $ */
/* $NetBSD: db_command.c,v 1.42 2000/05/23 06:06:10 thorpej Exp $ */
/*
* Mach Operating System
@ -542,7 +542,7 @@ db_command_loop()
db_output_line = 0;
#ifdef MULTIPROCESSOR
db_printf("(cpu %d)", cpu_number());
db_printf("(cpu %ld)", (long)cpu_number());
#endif
db_printf("db> ");
(void) db_read_line();