diff options
author | Steven Barth <steven@midlink.org> | 2015-04-14 08:45:26 +0200 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2015-04-14 08:45:26 +0200 |
commit | 8b468ec5022834d04b6be1cf45b4fe4f092c692e (patch) | |
tree | 3f3f137fc8959b54297a8b7b2a87d56990ee73af /utils.h | |
parent | 92d2aea918f650f309f753349457028032d53280 (diff) |
Cleanup issues reported by scan-build
Signed-off-by: Steven Barth <steven@midlink.org>
Diffstat (limited to 'utils.h')
-rw-r--r-- | utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -99,7 +99,7 @@ static inline int fls(int x) r -= 2; } if (!(x & 0x80000000u)) { - x <<= 1; + //x <<= 1; r -= 1; } return r; |