diff options
Diffstat (limited to 'externals/grill/fftease')
-rw-r--r-- | externals/grill/fftease/src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/externals/grill/fftease/src/main.cpp b/externals/grill/fftease/src/main.cpp index 5dfdbee2..3ce33e8f 100644 --- a/externals/grill/fftease/src/main.cpp +++ b/externals/grill/fftease/src/main.cpp @@ -13,7 +13,7 @@ WARRANTIES, see the file, "license.txt," in this distribution. // Initialization function for xsample library -V lib_setup() +static V fftease_main() { post(""); post("-------------------------------------------------------------------"); @@ -64,5 +64,5 @@ V lib_setup() } // setup the library -FLEXT_LIB_SETUP(fftease,lib_setup) +FLEXT_LIB_SETUP(fftease,fftease_main) |