aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/node.c10
-rw-r--r--src/uri.c2
2 files changed, 6 insertions, 6 deletions
diff --git a/src/node.c b/src/node.c
index a5603d47..73976b44 100644
--- a/src/node.c
+++ b/src/node.c
@@ -193,12 +193,12 @@ serd_node_new_decimal(double d, unsigned frac_digits)
SERD_API
SerdNode
-serd_node_new_integer(long i)
+serd_node_new_integer(int64_t i)
{
- long abs_i = labs(i);
- const long digits = (long)fmax(1.0, ceil(log10((double)abs_i + 1)));
- char* buf = (char*)calloc(digits + 2, 1);
- SerdNode node = { (const uint8_t*)buf, 0, 0, 0, SERD_LITERAL };
+ int64_t abs_i = (i < 0) ? -i : i;
+ const unsigned digits = fmax(1.0, ceil(log10((double)abs_i + 1)));
+ char* buf = (char*)calloc(digits + 2, 1);
+ SerdNode node = { (const uint8_t*)buf, 0, 0, 0, SERD_LITERAL };
// Point s to the end
char* s = buf + digits - 1;
diff --git a/src/uri.c b/src/uri.c
index 58609ba4..d329c4b5 100644
--- a/src/uri.c
+++ b/src/uri.c
@@ -28,7 +28,7 @@ is_windows_path(const uint8_t* path)
return is_alpha(path[0]) && (path[1] == ':' || path[1] == '|')
&& (path[2] == '/' || path[2] == '\\');
}
-
+
SERD_API
const uint8_t*
serd_uri_to_path(const uint8_t* uri)