From 84b5311257cbd7b6f50c9b16bada58216b911547 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 3 Dec 2011 08:27:51 -0800 Subject: Use an explicit 0 for the "no error" enums --- include/AL/al.h | 2 +- include/AL/alc.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/AL/al.h b/include/AL/al.h index 95d33988..10aeae45 100644 --- a/include/AL/al.h +++ b/include/AL/al.h @@ -287,7 +287,7 @@ typedef void ALvoid; /** Errors: No Error. */ -#define AL_NO_ERROR AL_FALSE +#define AL_NO_ERROR 0 /** * Invalid Name paramater passed to AL call. diff --git a/include/AL/alc.h b/include/AL/alc.h index 4712055c..22639f8c 100644 --- a/include/AL/alc.h +++ b/include/AL/alc.h @@ -120,7 +120,7 @@ typedef void ALCvoid; /** * No error */ -#define ALC_NO_ERROR ALC_FALSE +#define ALC_NO_ERROR 0 /** * No device -- cgit v1.2.3