Bug 1363729 - Fixed a small formatting regression in tests. r=haik

MozReview-Commit-ID: 7I6tKS6yoM7

--HG--
extra : rebase_source : 03a652024d30a57ad270338bc6e222281d0e7c78
This commit is contained in:
Alex Gaynor 2017-05-10 10:05:25 -04:00
parent f0edc88c2a
commit 9a4c947617

View File

@ -63,10 +63,10 @@ function openWriteCreateFlags() {
let O_CREAT = 0x200;
return (O_WRONLY | O_CREAT);
}
// Linux
let O_WRONLY = 0x01;
let O_CREAT = 0x40;
return (O_WRONLY | O_CREAT);
// Linux
let O_WRONLY = 0x01;
let O_CREAT = 0x40;
return (O_WRONLY | O_CREAT);
}
// Returns the name of the native library needed for native syscalls