From 9839d7e46892d695bbfdf0ddcf2fcb616e41b1ec Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 29 Apr 2011 18:48:45 +0000 Subject: Rename command line utilities to avoid clashing with slv2. Fix indentation. git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3235 a436a847-0d15-0410-975c-d299462d15a1 --- src/util.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/util.c') diff --git a/src/util.c b/src/util.c index e59ddc9..2122418 100644 --- a/src/util.c +++ b/src/util.c @@ -65,13 +65,13 @@ lilv_uri_to_path(const char* uri) #ifdef __WIN32__ if (!strncmp(uri, "file:///", (size_t)8)) { return (char*)(uri + 8); + } #else if (!strncmp(uri, "file://", (size_t)7)) { return (char*)(uri + 7); -#endif - } else { - return NULL; } +#endif + return NULL; } /** Return the current LANG converted to Turtle (i.e. RFC3066) style. -- cgit v1.2.1