From 298fc533e41a32295595c8b44307ccb14f103f4d Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 4 May 2021 08:40:27 +0300 Subject: [PATCH] ci: run `v fmt -w vlib/os/file.c.v` --- vlib/os/file.c.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/os/file.c.v b/vlib/os/file.c.v index 9b8b52c24b..cdc612db77 100644 --- a/vlib/os/file.c.v +++ b/vlib/os/file.c.v @@ -134,7 +134,7 @@ pub fn create(path string) ?File { [deprecated: 'use os.stdin() instead'] [deprecated_after: '2021-05-17'] pub fn open_stdin() File { - return stdin() + return stdin() } // stdin - return an os.File for stdin, so that you can use .get_line on it too.