fix sign comparsion

pull/776/head
Kevin Hester 2021-03-31 11:14:55 +08:00
rodzic 5f948c09fe
commit 5f45a10db5
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -5,6 +5,8 @@ You probably don't care about this section - skip to the next one.
## before next release
* fix github actions per sasha tip
* @havealoha comments about odd sleep behavior
* fix heltec battery scaling
* DONE sendtext busted in portduino, due to bytetime calculations
* remove linux dependency in native build
* DONE tcp stream problem in python+pordtuino, server thinks client dropped when client DID NOT DROP
@ -12,11 +14,9 @@ You probably don't care about this section - skip to the next one.
* make sure USB still works in android
* add portduino builds to zip
* add license to portduino and make announcement
* @havealoha comments about odd sleep behavior
* DONE naks are being dropped (though enqueuedLocal) sometimes before phone/PC gets them
* DONE have android fill in if local GPS has poor signal
* release to beta and amazon
* fix heltec battery scaling
* add reference counting to mesh packets
* allow multiple simultanteous phoneapi connections
* DONE split position.time and last_heard

Wyświetl plik

@ -40,7 +40,7 @@ size_t RedirectablePrint::vprintf(const char *format, va_list arg)
va_end(arg);
return 0;
};
if (len >= printBufLen) {
if (len >= (int)printBufLen) {
delete[] printBuf;
printBufLen *= 2;
printBuf = new char[printBufLen];