Changed an #if defined to #ifdef, for consistency with the other
decoders.
author |
Ryan C. Gordon <icculus@icculus.org> |
date |
Thu, 04 Oct 2001 19:35:53 +0000 |
parents |
7cd718877f3f |
children |
12688fbf9f59 |
files |
decoders/shn.c decoders/voc.c |
diffstat |
2 files changed, 2 insertions(+), 2 deletions(-)
[+]
|
line diff
--- a/decoders/shn.c Thu Oct 04 01:22:03 2001 +0000
+++ b/decoders/shn.c Thu Oct 04 19:35:53 2001 +0000
@@ -45,7 +45,7 @@
# include <config.h>
#endif
-#if (defined SOUND_SUPPORTS_SHN)
+#ifdef SOUND_SUPPORTS_SHN
#include <stdio.h>
#include <stdlib.h>
--- a/decoders/voc.c Thu Oct 04 01:22:03 2001 +0000
+++ b/decoders/voc.c Thu Oct 04 19:35:53 2001 +0000
@@ -41,7 +41,7 @@
# include <config.h>
#endif
-#if (defined SOUND_SUPPORTS_VOC)
+#ifdef SOUND_SUPPORTS_VOC
#include <stdio.h>
#include <stdlib.h>