diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2012-03-06 15:33:49 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2012-03-06 15:33:49 +0100 |
commit | bb08fe9cf80da451c8aac0338e698e4052f748b7 (patch) | |
tree | 76a9d7d9ee01262e52d588836e07d04979414680 | |
parent | 68dbcd3bc5f5608368273fc7d0ef1d84fae653c0 (diff) |
gnl: Fix 'signed shift result (0x20000000000) requires 43 bits to represent, but 'int' only has 32 bits' compiler warning
Seems we don't have that many flags left...
-rw-r--r-- | gnl/gnlobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnl/gnlobject.h b/gnl/gnlobject.h index 568b973..c5a3b2e 100644 --- a/gnl/gnlobject.h +++ b/gnl/gnlobject.h @@ -57,7 +57,7 @@ typedef enum GNL_OBJECT_OPERATION = (GST_BIN_FLAG_LAST << 1), GNL_OBJECT_EXPANDABLE = (GST_BIN_FLAG_LAST << 2), /* padding */ - GNL_OBJECT_LAST_FLAG = (GST_BIN_FLAG_LAST << 16) + GNL_OBJECT_LAST_FLAG = (GST_BIN_FLAG_LAST << 5) } GnlObjectFlags; |