From 315f2e4892a57f91f3297ed196b7915e33c85138 Mon Sep 17 00:00:00 2001 From: Michael Schroeder Date: Fri, 9 Mar 2012 13:55:18 +0100 Subject: [PATCH] - oops map_setall should be void --- src/bitmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitmap.h b/src/bitmap.h index 395e7a7..12257ff 100644 --- a/src/bitmap.h +++ b/src/bitmap.h @@ -44,7 +44,7 @@ static inline void map_set(Map *m, int n) { MAPSET(m, n); } -static inline int map_setall(Map *m) +static inline void map_setall(Map *m) { MAPSETALL(m); } -- 2.7.4