Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/sys Add missing paren.
details: https://anonhg.NetBSD.org/src/rev/cf87137cfa44
branches: trunk
changeset: 811510:cf87137cfa44
user: christos <christos%NetBSD.org@localhost>
date: Mon Nov 02 15:21:23 2015 +0000
description:
Add missing paren.
diffstat:
sys/sys/queue.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r a793af0566e2 -r cf87137cfa44 sys/sys/queue.h
--- a/sys/sys/queue.h Mon Nov 02 14:49:07 2015 +0000
+++ b/sys/sys/queue.h Mon Nov 02 15:21:23 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: queue.h,v 1.69 2015/11/02 14:49:07 christos Exp $ */
+/* $NetBSD: queue.h,v 1.70 2015/11/02 15:21:23 christos Exp $ */
/*
* Copyright (c) 1991, 1993
@@ -440,7 +440,7 @@
#define TAILQ_FOREACH_REVERSE(var, head, headname, field) \
for ((var) = TAILQ_LAST((head), headname); \
(var) != TAILQ_END(head); \
- (var) = TAILQ_PREV((var), headname, field)
+ (var) = TAILQ_PREV((var), headname, field))
#define TAILQ_FOREACH_REVERSE_SAFE(var, head, headname, field, prev) \
for ((var) = TAILQ_LAST((head), headname); \
Home |
Main Index |
Thread Index |
Old Index