make CI builds happy.

-remove #ifdef DEBUG,#endif around fluid_dump_modulator.
This commit is contained in:
jjceresa 2019-07-30 18:08:29 +02:00
parent 7101d72d0e
commit 56bc0bd44c
2 changed files with 2 additions and 9 deletions

View file

@ -245,13 +245,6 @@ configure_file ( ${CMAKE_SOURCE_DIR}/include/fluidsynth/version.h.in
configure_file ( ${CMAKE_SOURCE_DIR}/include/fluidsynth.cmake
${public_main_HEADER} )
if ( MSVC )
if( enable-debug )
# add DEBUG macro for preprocessor
add_definitions ( -DDEBUG )
endif( enable-debug )
endif ( MSVC )
if ( WIN32 )
include(generate_product_version)
generate_product_version(

View file

@ -1040,7 +1040,7 @@ int fluid_mod_has_dest(const fluid_mod_t *mod, int gen)
/* debug function: Prints the contents of a modulator */
#ifdef DEBUG
//#ifdef DEBUG
void fluid_dump_modulator(fluid_mod_t * mod)
{
int src1=mod->src1;
@ -1110,5 +1110,5 @@ void fluid_dump_modulator(fluid_mod_t * mod)
}; /* switch dest */
printf(", amount %9.2f, flags %3i, src2 %3i, flags2 %3i\n",amount, flags1, src2, flags2);
};
#endif
//#endif