Module Name: src
Committed By: christos
Date: Mon Nov 2 15:21:23 UTC 2015
Modified Files:
src/sys/sys: queue.h
Log Message:
Add missing paren.
To generate a diff of this commit:
cvs rdiff -u -r1.69 -r1.70 src/sys/sys/queue.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/sys/queue.h
diff -u src/sys/sys/queue.h:1.69 src/sys/sys/queue.h:1.70
--- src/sys/sys/queue.h:1.69 Mon Nov 2 09:49:07 2015
+++ src/sys/sys/queue.h Mon Nov 2 10:21:23 2015
@@ -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 @@ struct { \
#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); \