diff --git a/common/content/io.js b/common/content/io.js index 911db5bd..b02e1f8b 100644 --- a/common/content/io.js +++ b/common/content/io.js @@ -1103,7 +1103,7 @@ lookup: IO.PATH_SEP = (function () { let file = services.create("file"); let pathsep = "/"; - try { file.initWithPath("/") } catch(e) { pathsep = "\\"; } + try { file.initWithPath("/"); } catch(e) { pathsep = "\\"; } return pathsep; })();