fixed warnings on Mac OS 10.8, xcode 5

This commit is contained in:
roel@libnfc.org
2013-09-25 10:40:16 +00:00
parent 450d2e3a96
commit 7bb9d33e2c
6 changed files with 13 additions and 13 deletions

View File

@@ -812,7 +812,7 @@ int CmdThreshold(const char *Cmd)
if (GraphBuffer[i] >= threshold)
GraphBuffer[i] = 1;
else
GraphBuffer[i] =- 1;
GraphBuffer[i] = -1;
}
RepaintGraphWindow();
return 0;