mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Don't use %r, we havn't got it anymore.
Submitted by: bde
This commit is contained in:
parent
f863805df0
commit
f782b11a04
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=13628
1 changed files with 2 additions and 2 deletions
|
@ -59,7 +59,7 @@
|
||||||
* any improvements or extensions that they make and grant Carnegie the
|
* any improvements or extensions that they make and grant Carnegie the
|
||||||
* rights to redistribute these changes.
|
* rights to redistribute these changes.
|
||||||
*
|
*
|
||||||
* $Id: vm_glue.c,v 1.35 1996/01/04 21:13:14 wollman Exp $
|
* $Id: vm_glue.c,v 1.36 1996/01/19 03:59:46 dyson Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "opt_sysvipc.h"
|
#include "opt_sysvipc.h"
|
||||||
|
@ -627,7 +627,7 @@ iprintf(fmt /* , va_alist */ )
|
||||||
while (--i >= 0)
|
while (--i >= 0)
|
||||||
printf(" ");
|
printf(" ");
|
||||||
va_start(ap, fmt);
|
va_start(ap, fmt);
|
||||||
printf("%r", fmt, ap);
|
vprintf(fmt, ap);
|
||||||
va_end(ap);
|
va_end(ap);
|
||||||
}
|
}
|
||||||
#endif /* DDB */
|
#endif /* DDB */
|
||||||
|
|
Loading…
Reference in a new issue