From fbbfe11a5bb1a9d02f9fa7a341caae7e7d532e7e Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 6 Nov 2021 20:33:15 +0000 Subject: [PATCH] Add missing LV2_STATE_ERR_NO_SPACE to pre-included LV2 headers Signed-off-by: falkTX --- distrho/src/lv2/state.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/distrho/src/lv2/state.h b/distrho/src/lv2/state.h index 09787d93..7e162cb4 100644 --- a/distrho/src/lv2/state.h +++ b/distrho/src/lv2/state.h @@ -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; /**