Source-Changes-HG archive

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

[src/trunk]: src/sys/sys Indent.



details:   https://anonhg.NetBSD.org/src/rev/8827fd84eb15
branches:  trunk
changeset: 333850:8827fd84eb15
user:      uebayasi <uebayasi%NetBSD.org@localhost>
date:      Wed Nov 19 08:10:01 2014 +0000

description:
Indent.

diffstat:

 sys/sys/queue.h |  16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diffs (32 lines):

diff -r 89471ae930a2 -r 8827fd84eb15 sys/sys/queue.h
--- a/sys/sys/queue.h   Wed Nov 19 01:08:42 2014 +0000
+++ b/sys/sys/queue.h   Wed Nov 19 08:10:01 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: queue.h,v 1.67 2014/05/17 21:22:56 rmind Exp $ */
+/*     $NetBSD: queue.h,v 1.68 2014/11/19 08:10:01 uebayasi Exp $      */
 
 /*
  * Copyright (c) 1991, 1993
@@ -541,15 +541,15 @@
        QUEUEDEBUG_TAILQ_POSTREMOVE((elm), field);                      \
 } while (/*CONSTCOND*/0)
 
-#define TAILQ_REPLACE(head, elm, elm2, field) do {                      \
+#define TAILQ_REPLACE(head, elm, elm2, field) do {                     \
         if (((elm2)->field.tqe_next = (elm)->field.tqe_next) !=        \
            TAILQ_END(head))                                            \
-                (elm2)->field.tqe_next->field.tqe_prev =                \
-                    &(elm2)->field.tqe_next;                            \
-        else                                                            \
-                (head)->tqh_last = &(elm2)->field.tqe_next;             \
-        (elm2)->field.tqe_prev = (elm)->field.tqe_prev;                 \
-        *(elm2)->field.tqe_prev = (elm2);                               \
+                (elm2)->field.tqe_next->field.tqe_prev =               \
+                    &(elm2)->field.tqe_next;                           \
+        else                                                           \
+                (head)->tqh_last = &(elm2)->field.tqe_next;            \
+        (elm2)->field.tqe_prev = (elm)->field.tqe_prev;                        \
+        *(elm2)->field.tqe_prev = (elm2);                              \
        QUEUEDEBUG_TAILQ_POSTREMOVE((elm), field);                      \
 } while (/*CONSTCOND*/0)
 



Home | Main Index | Thread Index | Old Index