diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-01-18 08:32:28 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-01-18 08:32:28 +0100 |
commit | 6c64d4be1ab7a8ddb1731595dcfa212253cdfe0f (patch) | |
tree | a6d46939459c95a8d017a9cc686ea2adf3b758b1 /api | |
parent | d8fcc1ad5cb393165b934aa0fbabf17cc1dae021 (diff) |
api: running out of hex constants
Diffstat (limited to 'api')
-rw-r--r-- | api/plugin-support.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/api/plugin-support.hpp b/api/plugin-support.hpp index ab41dcd2..9cff1a2e 100644 --- a/api/plugin-support.hpp +++ b/api/plugin-support.hpp @@ -43,8 +43,8 @@ struct dylib final Filter = 0xdeadbabeu, Tracker = 0xcafebeefu, Protocol = 0xdeadf00du, - Extension = 0xdeadf001u, - Invalid = 0xcafebabeu, + Extension = 0xcafebabeu, + Invalid = (unsigned)-1, }; dylib(const QString& filename_, Type t) : |