Mercurial > hg > xemacs-beta
comparison src/sound.c @ 4343:fb73a2046d3e
Fix unused parameter warnings when compiling with ALSA sound support.
2007-12-20 Jerry James <james@xemacs.org>
* sound.c: Fix unused parameter warnings when HAVE_ALSA_SOUND.
author | Jerry James <james@xemacs.org> |
---|---|
date | Thu, 20 Dec 2007 09:51:51 -0700 |
parents | af0d2950b72a |
children | 19a72041c5ed |
comparison
equal
deleted
inserted
replaced
4342:4df309efe6fc | 4343:fb73a2046d3e |
---|---|
62 #else | 62 #else |
63 #define USED_IF_HAVE_NATIVE_OR_NAS(decl) UNUSED (decl) | 63 #define USED_IF_HAVE_NATIVE_OR_NAS(decl) UNUSED (decl) |
64 #endif | 64 #endif |
65 | 65 |
66 #if defined(HAVE_NATIVE_SOUND) || defined(HAVE_NAS_SOUND) \ | 66 #if defined(HAVE_NATIVE_SOUND) || defined(HAVE_NAS_SOUND) \ |
67 || defined(HAVE_ESD_SOUND) | 67 || defined(HAVE_ALSA_SOUND) || defined(HAVE_ESD_SOUND) |
68 #define USED_IF_HAVE_ANY(decl) decl | 68 #define USED_IF_HAVE_ANY(decl) decl |
69 #else | 69 #else |
70 #define USED_IF_HAVE_ANY(decl) UNUSED (decl) | 70 #define USED_IF_HAVE_ANY(decl) UNUSED (decl) |
71 #endif | 71 #endif |
72 | 72 |