aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-04-03 09:00:21 -0400
committerDavid Robillard <d@drobilla.net>2023-04-05 09:45:15 -0400
commit92f7c078250df898b24fce3af1ed6a9ae7d0c029 (patch)
treeb05d5310404a54363b6c85313b377bff0ecbd708 /src
parent6afca7558bd9b074957aec421fd22868c5b6698e (diff)
downloadserd-92f7c078250df898b24fce3af1ed6a9ae7d0c029.tar.gz
serd-92f7c078250df898b24fce3af1ed6a9ae7d0c029.tar.bz2
serd-92f7c078250df898b24fce3af1ed6a9ae7d0c029.zip
Fix sign conversion warnings
Diffstat (limited to 'src')
-rw-r--r--src/base64.c2
-rw-r--r--src/node.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/base64.c b/src/base64.c
index 02ca828b..ce8fe74d 100644
--- a/src/base64.c
+++ b/src/base64.c
@@ -90,7 +90,7 @@ decode_chunk(const uint8_t in[4], uint8_t out[3])
out[0] = (uint8_t)(((unmap(in[0]) << 2)) | unmap(in[1]) >> 4);
out[1] = (uint8_t)(((unmap(in[1]) << 4) & 0xF0) | unmap(in[2]) >> 2);
out[2] = (uint8_t)(((unmap(in[2]) << 6) & 0xC0) | unmap(in[3]));
- return 1 + (in[2] != '=') + ((in[2] != '=') && (in[3] != '='));
+ return 1U + (in[2] != '=') + ((in[2] != '=') && (in[3] != '='));
}
void*
diff --git a/src/node.c b/src/node.c
index 5e70cebf..122f51f3 100644
--- a/src/node.c
+++ b/src/node.c
@@ -350,7 +350,7 @@ serd_node_new_decimal(const double d, const unsigned frac_digits)
SerdNode
serd_node_new_integer(const int64_t i)
{
- uint64_t abs_i = (i < 0) ? -i : i;
+ uint64_t abs_i = (uint64_t)((i < 0) ? -i : i);
const unsigned digits = serd_digits((double)abs_i);
char* buf = (char*)calloc(digits + 2, 1);
SerdNode node = {(const uint8_t*)buf, 0, 0, 0, SERD_LITERAL};