Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/evbmips/evbmips Add a newline to a debug printf.



details:   https://anonhg.NetBSD.org/src/rev/7ed7f1126b90
branches:  trunk
changeset: 525869:7ed7f1126b90
user:      simonb <simonb%NetBSD.org@localhost>
date:      Fri Apr 19 01:14:17 2002 +0000

description:
Add a newline to a debug printf.

diffstat:

 sys/arch/evbmips/evbmips/clock.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 2c0778721036 -r 7ed7f1126b90 sys/arch/evbmips/evbmips/clock.c
--- a/sys/arch/evbmips/evbmips/clock.c  Fri Apr 19 01:04:38 2002 +0000
+++ b/sys/arch/evbmips/evbmips/clock.c  Fri Apr 19 01:14:17 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: clock.c,v 1.2 2002/04/08 14:08:25 simonb Exp $ */
+/*     $NetBSD: clock.c,v 1.3 2002/04/19 01:14:17 simonb Exp $ */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -44,7 +44,7 @@
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.2 2002/04/08 14:08:25 simonb Exp $");
+__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.3 2002/04/19 01:14:17 simonb Exp $");
 
 #include <sys/param.h>
 #include <sys/kernel.h>
@@ -164,7 +164,7 @@
 
        (*clockfns->cf_get)(clockdev, base, &ct);
 #ifdef DEBUG
-       printf("readclock: %d/%d/%d/%d/%d/%d", ct.year, ct.mon, ct.day,
+       printf("readclock: %d/%d/%d/%d/%d/%d\n", ct.year, ct.mon, ct.day,
               ct.hour, ct.min, ct.sec);
 #endif
        clockinitted = 1;



Home | Main Index | Thread Index | Old Index