From e57faf21483c98ec6ed8de3257e77ce1b4e5c8e7 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 8 Oct 2015 20:53:51 +0000 Subject: Improve test coverage git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5754 a436a847-0d15-0410-975c-d299462d15a1 --- src/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/util.c') diff --git a/src/util.c b/src/util.c index f9aed2d..d999942 100644 --- a/src/util.c +++ b/src/util.c @@ -441,7 +441,7 @@ lilv_realpath(const char* path) char* real_path = realpath(path, NULL); return real_path ? real_path : lilv_strdup(path); #else - // OSX <= 105, if anyone cares. I sure don't. + // OSX <= 10.5, if anyone cares. I sure don't. char* out = (char*)malloc(PATH_MAX); char* real_path = realpath(path, out); if (!real_path) { -- cgit v1.2.1