comment out extra tokens at end of #endif directive to avoid compiler warnings [-Wextra-tokens]

This commit is contained in:
Mojca Miklavec 2016-02-26 15:11:55 +01:00
parent 0eb4de9304
commit ecc2138c5c
2 changed files with 3 additions and 3 deletions

View File

@ -11,10 +11,10 @@ typedef unsigned int UWORD;
#ifdef DEBUG
#define INLINE
#else DEBUG
#else /* DEBUG */
/* #define INLINE inline */
#define INLINE
#endif DEBUG
#endif /* DEBUG */
/*
* FilterUp() - Applies a filter to a given sample when up-converting.

View File

@ -459,7 +459,7 @@ double step_to_hz(double);
#ifdef WIN32
double log2(double x);
#endif WIN32
#endif /* WIN32 */
/* macros for access to samples within a suspension */
/* NOTE: assume suspension structure is named "susp" */