diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/parse-xml.c | 1 | ||||
-rw-r--r-- | core/qtserialbluetooth.cpp | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/core/parse-xml.c b/core/parse-xml.c index a2365c0aa..9b5123ad5 100644 --- a/core/parse-xml.c +++ b/core/parse-xml.c @@ -3359,6 +3359,7 @@ extern int divinglog_profile(void *handle, int columns, char **data, char **colu int ppo2_2 = atoi_n(ptr5 + 3, 3); int ppo2_3 = atoi_n(ptr5 + 6, 3); int otu = atoi_n(ptr5 + 9, 4); + (void) otu; // we seem to not store this? Do we understand its format? int cns = atoi_n(ptr5 + 13, 4); int setpoint = atoi_n(ptr5 + 17, 2); diff --git a/core/qtserialbluetooth.cpp b/core/qtserialbluetooth.cpp index 8e5fac499..a6baae9f7 100644 --- a/core/qtserialbluetooth.cpp +++ b/core/qtserialbluetooth.cpp @@ -181,14 +181,14 @@ static dc_status_t ble_serial_write(dc_custom_io_t *io, const void* data, size_t while (size) { size_t len = sizeof(buffer.out) - transferred; - if (len > io->packet_size) + if ((int)len > io->packet_size) len = io->packet_size; if (len > size) len = size; memcpy(buffer.out + buffer.out_bytes, data, len); buffer.out_bytes += len; - if (buffer.out_bytes <= io->packet_size || buffer.out_bytes == size) { + if ((int)buffer.out_bytes <= io->packet_size || buffer.out_bytes == size) { rc = ble_serial_flush_write(); if (rc != DC_STATUS_SUCCESS) break; |