stanluk pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=3035b44231d992ae9d66fdca3e83560825a004b1
commit 3035b44231d992ae9d66fdca3e83560825a004b1 Author: Lukasz Stanislawski <[email protected]> Date: Fri Oct 2 11:33:46 2015 +0200 atspi: fix state macros after extending Elm_Atspi_State_Type. --- src/lib/elm_interface_atspi_accessible.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/elm_interface_atspi_accessible.h b/src/lib/elm_interface_atspi_accessible.h index 9b147c9..0012caa 100644 --- a/src/lib/elm_interface_atspi_accessible.h +++ b/src/lib/elm_interface_atspi_accessible.h @@ -17,17 +17,17 @@ typedef uint64_t Elm_Atspi_State_Set; /* * Sets a particilar state type for given state set. */ -#define STATE_TYPE_SET(state_set, type) (state_set|= (1 << type)) +#define STATE_TYPE_SET(state_set, type) (state_set|= (1L << type)) /** * Unsets a particilar state type for given state set. */ -#define STATE_TYPE_UNSET(state_set, type) (state_set &= ~(1 << type)) +#define STATE_TYPE_UNSET(state_set, type) (state_set &= ~(1L << type)) /** * Gets value of a particilar state type for given state set. */ -#define STATE_TYPE_GET(state_set, type) (state_set & (1 << type)) +#define STATE_TYPE_GET(state_set, type) (state_set & (1L << type)) /** --
