From 2d3f30fb96fc9f0f0299b7f7fbd4716348a7620e Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 13 May 2019 10:12:12 +0200 Subject: [PATCH] introspect: fix enum --- src/pipewire/introspect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipewire/introspect.h b/src/pipewire/introspect.h index 28987f631..1f582f252 100644 --- a/src/pipewire/introspect.h +++ b/src/pipewire/introspect.h @@ -236,7 +236,7 @@ struct pw_link_info { #define PW_LINK_CHANGE_MASK_OUTPUT (1 << 0) #define PW_LINK_CHANGE_MASK_INPUT (1 << 1) #define PW_LINK_CHANGE_MASK_STATE (1 << 2) -#define PW_LINK_CHANGE_MASK_FORMAT (1 << 4) +#define PW_LINK_CHANGE_MASK_FORMAT (1 << 3) #define PW_LINK_CHANGE_MASK_PROPS (1 << 4) uint64_t change_mask; /**< bitfield of changed fields since last call */ uint32_t output_node_id; /**< server side output node id */