summaryrefslogtreecommitdiffstats
path: root/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c2
1 files changed, 1 insertions, 1 deletions
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) {