X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmisc%2Ferror.c;h=bb982c49d1c98484761b7c921e2c57d6e8091879;hb=96b4ee1ee2da310e9ea951a29672a7609dbf831e;hp=e548d4df48b666c87daa9a0de7dc9fdc125493d0;hpb=1e67ea66dcb1f5aa9add966a3563b98b9cd3ccca;p=vlc diff --git a/src/misc/error.c b/src/misc/error.c index e548d4df48..bb982c49d1 100644 --- a/src/misc/error.c +++ b/src/misc/error.c @@ -1,8 +1,8 @@ /***************************************************************************** * error.c: error handling routine ***************************************************************************** - * Copyright (C) 2002-2004 VideoLAN - * $Id: error.c,v 1.4 2004/01/25 17:16:06 zorglub Exp $ + * Copyright (C) 2002-2004 the VideoLAN team + * $Id$ * * Authors: Samuel Hocevar * @@ -18,19 +18,23 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** * Preamble *****************************************************************************/ -#include +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + +#include /***************************************************************************** * vlc_error: strerror() equivalent ***************************************************************************** * This function returns a string describing the error code passed in the - * argument. A list of all errors can be found in include/vlc/vlc.h. + * argument. A list of all errors can be found in include/vlc_common.h. *****************************************************************************/ char const * vlc_error ( int i_err ) { @@ -51,8 +55,6 @@ char const * vlc_error ( int i_err ) case VLC_ENOOBJ: return "object not found"; - case VLC_EBADOBJ: - return "bad object type"; case VLC_ENOVAR: return "variable not found";