From 5953e2ce95dc0cb809d529c4103ae6b80f0248c0 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Fri, 4 Apr 2014 10:47:58 +0200 Subject: Remove some compilation warnings --- src/dabInputDabplusFifo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dabInputDabplusFifo.cpp') diff --git a/src/dabInputDabplusFifo.cpp b/src/dabInputDabplusFifo.cpp index d1369c5..81f373b 100644 --- a/src/dabInputDabplusFifo.cpp +++ b/src/dabInputDabplusFifo.cpp @@ -99,7 +99,7 @@ int dabInputDabplusFifoRead(void* args, void* buffer, int size) { dabInputDabplusFifoData* data = (dabInputDabplusFifoData*)args; - if (data->bufferSize != size * 5) { + if (data->bufferSize != (size_t)size * 5) { if (data->buffer != NULL) { delete[] data->buffer; } -- cgit v1.2.3