aboutsummaryrefslogtreecommitdiffstats
path: root/src/uri.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-01-18 01:33:57 +0000
committerDavid Robillard <d@drobilla.net>2012-01-18 01:33:57 +0000
commit8778ef5322c33b4aa656db8a810010df19b70235 (patch)
treed20f4c5e27e02ec4c3801705bc16a75ab760b9d2 /src/uri.c
parent79efd9f6e30bec80020ab578940d03a228a1d024 (diff)
downloadserd-8778ef5322c33b4aa656db8a810010df19b70235.tar.gz
serd-8778ef5322c33b4aa656db8a810010df19b70235.tar.bz2
serd-8778ef5322c33b4aa656db8a810010df19b70235.zip
Make serd_node_new_integer take int64_t instead of long.
Turns out long is sometimes 32-bits even on modern 64-bit machines on certain insane Operating Systems... git-svn-id: http://svn.drobilla.net/serd/trunk@297 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'src/uri.c')
-rw-r--r--src/uri.c2
1 files changed, 1 insertions, 1 deletions
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)