diff options
author | Stijn Buys <ingar@osirion.org> | 2012-11-25 21:37:20 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2012-11-25 21:37:20 +0000 |
commit | bc8fb513b967d9c4eaa5f478e112c7f479093bbf (patch) | |
tree | e3fa230ba1e8a47c9a96628d631c3320bd8770eb /src | |
parent | 52b393e9692c3a93acdb207c53dbbf5e9df13e75 (diff) |
Add a typecast to unsigned int to make debian happy.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/slot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/slot.h b/src/core/slot.h index 56ee224..eef640a 100644 --- a/src/core/slot.h +++ b/src/core/slot.h @@ -64,7 +64,7 @@ public: * */ inline const bool has_flag(const Flags flag) { - return ( (slot_flags & flag) == flag ); + return ( (slot_flags & flag) == (unsigned int) flag ); } /** |