Source-Changes-HG archive

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

[src/trunk]: src/sys/ddb Fix indent in prevous commit.



details:   https://anonhg.NetBSD.org/src/rev/59ec7a2128ba
branches:  trunk
changeset: 757467:59ec7a2128ba
user:      enami <enami%NetBSD.org@localhost>
date:      Tue Aug 31 07:12:55 2010 +0000

description:
Fix indent in prevous commit.

diffstat:

 sys/ddb/db_input.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (33 lines):

diff -r a7c7dd59f655 -r 59ec7a2128ba sys/ddb/db_input.c
--- a/sys/ddb/db_input.c        Tue Aug 31 05:12:35 2010 +0000
+++ b/sys/ddb/db_input.c        Tue Aug 31 07:12:55 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: db_input.c,v 1.24 2010/08/30 19:23:25 tls Exp $        */
+/*     $NetBSD: db_input.c,v 1.25 2010/08/31 07:12:55 enami Exp $      */
 
 /*
  * Mach Operating System
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: db_input.c,v 1.24 2010/08/30 19:23:25 tls Exp $");
+__KERNEL_RCSID(0, "$NetBSD: db_input.c,v 1.25 2010/08/31 07:12:55 enami Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_ddbparam.h"
@@ -134,12 +134,12 @@
 #define INC_DB_CURR() do {                                             \
        ++db_history_curr;                                              \
        if (db_history_curr > db_history + DDB_HISTORY_SIZE - 1)        \
-           db_history_curr = db_history;                               \
+               db_history_curr = db_history;                           \
     } while (0)
 #define DEC_DB_CURR() do {                                             \
        --db_history_curr;                                              \
        if (db_history_curr < db_history)                               \
-           db_history_curr = db_history + DDB_HISTORY_SIZE - 1;        \
+               db_history_curr = db_history + DDB_HISTORY_SIZE - 1;    \
     } while (0)
 #endif
 



Home | Main Index | Thread Index | Old Index