From bd72e0191a0a7264172569cdf9d7e8e9d6293c36 Mon Sep 17 00:00:00 2001 From: Ted Pavlic Date: Thu, 2 Apr 2009 17:57:09 -0400 Subject: [PATCH] Make implicit semicolon explicit in new try line. --- common/content/io.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; })();