Skip to content

Commit

Permalink
Add missing LV2_STATE_ERR_NO_SPACE to pre-included LV2 headers
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Nov 6, 2021
1 parent ad05572 commit fbbfe11
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion distrho/src/lv2/state.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ typedef enum {
LV2_STATE_ERR_BAD_TYPE = 2, /**< Failed due to unsupported type. */
LV2_STATE_ERR_BAD_FLAGS = 3, /**< Failed due to unsupported flags. */
LV2_STATE_ERR_NO_FEATURE = 4, /**< Failed due to missing features. */
LV2_STATE_ERR_NO_PROPERTY = 5 /**< Failed due to missing property. */
LV2_STATE_ERR_NO_PROPERTY = 5, /**< Failed due to missing property. */
LV2_STATE_ERR_NO_SPACE = 6 /**< Failed due to insufficient space. */
} LV2_State_Status;

/**
Expand Down

0 comments on commit fbbfe11

Please sign in to comment.