summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2010-04-17 09:16:42 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2010-04-17 09:16:42 +0000
commita2d204814a67483b2d86116ee82b1e58f9c72a4d (patch)
treef5c6e25224f27d2e52623d7e91c15bd3d72e6084 /riscos
parent06145e570dbbf836dd9d4a53a0a736b70ece0458 (diff)
downloadnetsurf-a2d204814a67483b2d86116ee82b1e58f9c72a4d.tar.gz
netsurf-a2d204814a67483b2d86116ee82b1e58f9c72a4d.tar.bz2
Fix bracket missmatch.
svn path=/trunk/netsurf/; revision=10421
Diffstat (limited to 'riscos')
-rw-r--r--riscos/gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/riscos/gui.c b/riscos/gui.c
index edfe778c6..302587833 100644
--- a/riscos/gui.c
+++ b/riscos/gui.c
@@ -2074,7 +2074,7 @@ char *path_to_url(const char *path)
/* create a unix path from teh cananocal risc os one */
unix_path = __unixify(canonical_path, __RISCOSIFY_NO_REVERSE_SUFFIX, NULL, 0, 0);
- if (unix_path == NULL)
+ if (unix_path == NULL) {
LOG(("__unixify failed: %s", canonical_path));
free(canonical_path);
return NULL;