From 562ad6f874564c3770d096711f443b49f59ef686 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Sun, 10 Dec 2017 02:08:53 +1100 Subject: src/: Fix some linter complaints --- src/liolib.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/liolib.js') 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) { -- cgit v1.2.3-54-g00ecf