Source-Changes-HG archive

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

[src/trunk]: src/sys/sys remove trailing whitespace.



details:   https://anonhg.NetBSD.org/src/rev/b41af65ce98d
branches:  trunk
changeset: 791622:b41af65ce98d
user:      christos <christos%NetBSD.org@localhost>
date:      Tue Nov 26 01:41:34 2013 +0000

description:
remove trailing whitespace.

diffstat:

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

diffs (25 lines):

diff -r c32aed5cc7b5 -r b41af65ce98d sys/sys/queue.h
--- a/sys/sys/queue.h   Tue Nov 26 01:36:07 2013 +0000
+++ b/sys/sys/queue.h   Tue Nov 26 01:41:34 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: queue.h,v 1.60 2013/11/26 01:27:46 christos Exp $      */
+/*     $NetBSD: queue.h,v 1.61 2013/11/26 01:41:34 christos Exp $      */
 
 /*
  * Copyright (c) 1991, 1993
@@ -559,12 +559,12 @@
 #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->field.tqe_prev =                \
                     &(elm2)->field.tqe_next;                            \
         else                                                            \
-                (head)->tqh_last = &(elm2)->field.tqe_next;             \  
+                (head)->tqh_last = &(elm2)->field.tqe_next;             \
         (elm2)->field.tqe_prev = (elm)->field.tqe_prev;                 \
-        *(elm2)->field.tqe_prev = (elm2);                               \ 
+        *(elm2)->field.tqe_prev = (elm2);                               \
        QUEUEDEBUG_TAILQ_POSTREMOVE((elm), field);                      \
 } while (/*CONSTCOND*/0)
 



Home | Main Index | Thread Index | Old Index