diff options
author | David Robillard <d@drobilla.net> | 2012-01-18 01:33:57 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-01-18 01:33:57 +0000 |
commit | 8778ef5322c33b4aa656db8a810010df19b70235 (patch) | |
tree | d20f4c5e27e02ec4c3801705bc16a75ab760b9d2 /src/uri.c | |
parent | 79efd9f6e30bec80020ab578940d03a228a1d024 (diff) | |
download | serd-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |