diff options
author | daurnimator <quae@daurnimator.com> | 2017-12-10 02:08:53 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-12-10 02:36:36 +1100 |
commit | 562ad6f874564c3770d096711f443b49f59ef686 (patch) | |
tree | 910d919dcee89c71eaeeec8465152add19dc4e9f /src/liolib.js | |
parent | 54c4a6a66778466630cca7a9223c760942c7ab70 (diff) | |
download | fengari-562ad6f874564c3770d096711f443b49f59ef686.tar.gz fengari-562ad6f874564c3770d096711f443b49f59ef686.tar.bz2 fengari-562ad6f874564c3770d096711f443b49f59ef686.zip |
src/: Fix some linter complaints
Diffstat (limited to 'src/liolib.js')
-rw-r--r-- | src/liolib.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liolib.js b/src/liolib.js index a87309a..3241011 100644 --- a/src/liolib.js +++ b/src/liolib.js @@ -95,11 +95,11 @@ const g_iofile = function(L, f, mode) { }; const io_input = function(L) { - return g_iofile(L, IO_INPUT, "r"); + return g_iofile(L, IO_INPUT, "r"); }; const io_output = function(L) { - return g_iofile(L, IO_OUTPUT, "w"); + return g_iofile(L, IO_OUTPUT, "w"); }; const g_write = function(L, f, arg) { |