Clean up a few compiler warning messages.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@2581 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2012-09-13 19:34:50 +00:00
parent 8175795038
commit 7c8eeff1b1
4 changed files with 7 additions and 6 deletions

View File

@ -1,4 +1,4 @@
//---------------------------------------------------------------- MainWindow
//--------------------------------------------------------------- MainWindow
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "devsetup.h"

View File

@ -124,9 +124,9 @@ unsigned char Si570usbOpenDevice(usb_dev_handle **device, char *usbSerialID)
char string[256];
int len;
int vendor = USBDEV_SHARED_VENDOR;
char *vendorName = VENDOR_NAME;
char *vendorName = (char *)VENDOR_NAME;
int product = USBDEV_SHARED_PRODUCT;
char *productName = PRODUCT_NAME;
char *productName = (char *)PRODUCT_NAME;
char serialNumberString[20];
static int didUsbInit = 0;

View File

@ -29,9 +29,9 @@ public:
SoundInThread():
quitExecution(false),
m_dataSinkBusy(false),
m_rate(0),
bufSize(0)
bufSize(0),
m_dataSinkBusy(false)
{
}

View File

@ -27,7 +27,8 @@ extern "C" int d2aCallback(const void *inputBuffer, void *outputBuffer,
{
paUserData *udata=(paUserData*)userData;
short *wptr = (short*)outputBuffer;
unsigned int i,n;
unsigned int i;
int n;
static int ic=0;
static bool btxok0=false;
static int nStart=0;