summaryrefslogtreecommitdiff
path: root/amiga/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'amiga/misc.c')
-rwxr-xr-xamiga/misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/amiga/misc.c b/amiga/misc.c
index f492fcf8a..fb4b86ff4 100755
--- a/amiga/misc.c
+++ b/amiga/misc.c
@@ -76,9 +76,9 @@ char *url_to_path(const char *url)
char *path_to_url(const char *path)
{
- char *r = malloc(strlen(path) + 8 + 1);
+ char *r = malloc(strlen(path) + FILE_SCHEME_PREFIX_LEN + 1);
- strcpy(r, "file:///");
+ strcpy(r, FILE_SCHEME_PREFIX);
strcat(r, path);
return r;