From: Michael Schroeder Date: Fri, 9 Mar 2012 12:55:18 +0000 (+0100) Subject: - oops map_setall should be void X-Git-Tag: BASE-SuSE-Code-12_2-Branch~105 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=315f2e4892a57f91f3297ed196b7915e33c85138;p=platform%2Fupstream%2Flibsolv.git - oops map_setall should be void --- 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); }