Fix bracket missmatch.

svn path=/trunk/netsurf/; revision=10421
This commit is contained in:
Michael Drake 2010-04-17 09:16:42 +00:00
parent 06145e570d
commit a2d204814a
1 changed files with 1 additions and 1 deletions

View File

@ -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;