commit 4ccad8575111662cd68d91d7e4f516a9c9f294f4
parent 18c08a076d0246196b8359e6ba2ac0efca573f1e
Author: vaplv <vaplv@free.fr>
Date: Sat, 28 Jun 2014 15:10:01 +0200
Remove the Type argument of the FOR_EACH_REVERSE macro
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/rsys.h b/src/rsys.h
@@ -144,7 +144,7 @@
for((Id) = (Start); (Id) < (End); ++(Id))
/* Reverse iterrate over [Start, End) */
-#define FOR_EACH_REVERSE(Type, Id, Start, End) \
+#define FOR_EACH_REVERSE(Id, Start, End) \
for((Id) = (Start); (Id) > (End); --(Id))
/*******************************************************************************