commit da1fabc182d64af33b7a6e668d508530046d134d
parent 2cdd01ce3a0fc7dbace5aeeae95671bd93325885
Author: Hans Petter Selasky <[email protected]>
Date: Thu, 2 Jan 2020 19:31:36 +0100
Fix signed comparison compile warning.
Signed-off-by: Hans Petter Selasky <[email protected]>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Synth/ADnote.cpp b/src/Synth/ADnote.cpp
@@ -28,7 +28,7 @@
#include "OscilGen.h"
#include "ADnote.h"
-#define LENGTHOF(x) (sizeof(x)/sizeof(x[0]))
+#define LENGTHOF(x) ((int)(sizeof(x)/sizeof(x[0])))
namespace zyn {
ADnote::ADnote(ADnoteParameters *pars_, SynthParams &spars,