Bug 1073912 - Use 0o notation for octal literal. r=gavin

This commit is contained in:
ISHIKAWA, Chiaki 2014-09-29 19:46:00 -04:00
parent fc0ee84a83
commit 0504b8ce04

View File

@ -144,7 +144,7 @@ XULStore.prototype = {
readFile: function() {
const MODE_RDONLY = 0x01;
const FILE_PERMS = 0600;
const FILE_PERMS = 0o600;
let stream = Cc["@mozilla.org/network/file-input-stream;1"].
createInstance(Ci.nsIFileInputStream);