From e8ae95aceb7873e9e0a2f1a5876a4ba7f2b30e94 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Thu, 15 Oct 2009 20:50:51 +0200 Subject: [PATCH] src/aubio_priv.h: change AUBIO_FAIL from 1 to -1, now works with unsigned ints --- src/aubio_priv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aubio_priv.h b/src/aubio_priv.h index e4ebe5ad..24aec2ed 100644 --- a/src/aubio_priv.h +++ b/src/aubio_priv.h @@ -106,7 +106,7 @@ /* Error reporting */ typedef enum { AUBIO_OK = 0, - AUBIO_FAIL = -1 + AUBIO_FAIL = 1 } aubio_status; #ifdef HAVE_C99_VARARGS_MACROS -- 2.26.2