summaryrefslogtreecommitdiff
path: root/res/libresample/src/resample.c
diff options
context:
space:
mode:
Diffstat (limited to 'res/libresample/src/resample.c')
-rw-r--r--res/libresample/src/resample.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/res/libresample/src/resample.c b/res/libresample/src/resample.c
index 405bdd9d8..9dba5af96 100644
--- a/res/libresample/src/resample.c
+++ b/res/libresample/src/resample.c
@@ -87,7 +87,7 @@ void *resample_open(int highQuality, double minFactor, double maxFactor)
/* Just exit if we get invalid factors */
if (minFactor <= 0.0 || maxFactor <= 0.0 || maxFactor < minFactor) {
- #if DEBUG
+ #ifdef DEBUG
fprintf(stderr,
"libresample: "
"minFactor and maxFactor must be positive real numbers,\n"
@@ -187,7 +187,7 @@ int resample_process(void *handle,
int Nx;
int i, len;
- #if DEBUG
+ #ifdef DEBUG
fprintf(stderr, "resample_process: in=%d, out=%d lastFlag=%d\n",
inBufferLen, outBufferLen, lastFlag);
#endif
@@ -197,7 +197,7 @@ int resample_process(void *handle,
outSampleCount = 0;
if (factor < hp->minFactor || factor > hp->maxFactor) {
- #if DEBUG
+ #ifdef DEBUG
fprintf(stderr,
"libresample: factor %f is not between "
"minFactor=%f and maxFactor=%f",