summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libappstream-glib/as-store.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libappstream-glib/as-store.h b/libappstream-glib/as-store.h
index efbf567..29b2c4d 100644
--- a/libappstream-glib/as-store.h
+++ b/libappstream-glib/as-store.h
@@ -121,9 +121,9 @@ typedef enum {
* The flags to use when local files are added or removed from the store.
**/
typedef enum {
- AS_STORE_WATCH_FLAG_NONE = 0, /* Since: 0.4.2 */
- AS_STORE_WATCH_FLAG_ADDED = 1, /* Since: 0.4.2 */
- AS_STORE_WATCH_FLAG_REMOVED = 2, /* Since: 0.4.2 */
+ AS_STORE_WATCH_FLAG_NONE = 0, /* Since: 0.4.2 */
+ AS_STORE_WATCH_FLAG_ADDED = 1 << 0, /* Since: 0.4.2 */
+ AS_STORE_WATCH_FLAG_REMOVED = 1 << 1, /* Since: 0.4.2 */
/*< private >*/
AS_STORE_WATCH_FLAG_LAST
} AsStoreWatchFlags;