The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

t/libmonado: Fix duplicate value for MND_ERROR_UNSUPPORTED_OPERATION

These enum values should be unique to differentiate them.

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2537>

authored by

averyv and committed by
Marge Bot
98efbb62 84b26695

+2 -2
+2 -2
src/xrt/targets/libmonado/monado.h
··· 27 27 //! Minor version of the API. 28 28 #define MND_API_VERSION_MINOR 5 29 29 //! Patch version of the API. 30 - #define MND_API_VERSION_PATCH 0 30 + #define MND_API_VERSION_PATCH 1 31 31 32 32 /*! 33 33 * Result codes for operations, negative are errors, zero or positives are ··· 47 47 //! Supported in version 1.3 and above. 48 48 MND_ERROR_INVALID_OPERATION = -7, 49 49 //! Supported in version 1.5 and above. 50 - MND_ERROR_UNSUPPORTED_OPERATION = -7, 50 + MND_ERROR_UNSUPPORTED_OPERATION = -8, 51 51 } mnd_result_t; 52 52 53 53 /*!