chg: remove warning unused variable

This commit is contained in:
Chris 2018-09-09 23:16:47 +02:00
commit 0a648d482d
5 changed files with 6 additions and 7 deletions

View file

@ -1576,7 +1576,7 @@ int CmdLoad(const char *Cmd) {
// set signal properties low/high/mean/amplitude and isnoice detection
uint8_t bits[GraphTraceLen];
size_t size = getFromGraphBuf(bits);
isNoise(bits, sizeof(bits));
isNoise(bits, size);
return 0;
}