Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-11-25 21:37:20 +0000
committerStijn Buys <ingar@osirion.org>2012-11-25 21:37:20 +0000
commitbc8fb513b967d9c4eaa5f478e112c7f479093bbf (patch)
treee3fa230ba1e8a47c9a96628d631c3320bd8770eb /src/core
parent52b393e9692c3a93acdb207c53dbbf5e9df13e75 (diff)
Add a typecast to unsigned int to make debian happy.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/slot.h2
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 );
}
/**