From 7ae7170d6140f7cad730f05f84b53437058b82f4 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 29 Apr 2021 21:46:15 +0200 Subject: Everywhere: "file name" => "filename" --- Userland/Games/Chess/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Games/Chess') diff --git a/Userland/Games/Chess/main.cpp b/Userland/Games/Chess/main.cpp index 928d7990f3..4747a14996 100644 --- a/Userland/Games/Chess/main.cpp +++ b/Userland/Games/Chess/main.cpp @@ -38,7 +38,7 @@ int main(int argc, char** argv) return 1; } - if (unveil(config->file_name().characters(), "crw") < 0) { + if (unveil(config->filename().characters(), "crw") < 0) { perror("unveil"); return 1; } -- cgit v1.2.3