Commit 7387c6d3 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Rationalize error code values

VLC_GENERIC was particularly bad for RISC processors.
parent b9f09547
...@@ -393,20 +393,15 @@ struct vlc_list_t ...@@ -393,20 +393,15 @@ struct vlc_list_t
/***************************************************************************** /*****************************************************************************
* Error values (shouldn't be exposed) * Error values (shouldn't be exposed)
*****************************************************************************/ *****************************************************************************/
#define VLC_SUCCESS -0 /* No error */ #define VLC_SUCCESS (-0) /**< No error */
#define VLC_ENOMEM -1 /* Not enough memory */ #define VLC_EGENERIC (-1) /**< Unspecified error */
#define VLC_ETIMEOUT -3 /* Timeout */ #define VLC_ENOMEM (-2) /**< Not enough memory */
#define VLC_ETIMEOUT (-3) /**< Timeout */
#define VLC_ENOMOD -10 /* Module not found */ #define VLC_ENOMOD (-4) /**< Module not found */
#define VLC_ENOOBJ (-5) /**< Object not found */
#define VLC_ENOOBJ -20 /* Object not found */ #define VLC_ENOVAR (-6) /**< Variable not found */
#define VLC_EBADVAR (-7) /**< Bad variable value */
#define VLC_ENOVAR -30 /* Variable not found */ #define VLC_ENOITEM (-8) /**< Item not found */
#define VLC_EBADVAR -31 /* Bad variable value */
#define VLC_ENOITEM -40 /**< Item not found */
#define VLC_EGENERIC -666 /* Generic error */
/***************************************************************************** /*****************************************************************************
* Variable callbacks * Variable callbacks
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment