From a988b15c8fe0ebaaa5a7824632fdced61f19f678 Mon Sep 17 00:00:00 2001 From: Alcaro Date: Fri, 2 Oct 2020 15:55:39 +0200 Subject: [PATCH] Testing CodeQL --- flips-cli.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flips-cli.cpp b/flips-cli.cpp index 61544ba..ae1568d 100644 --- a/flips-cli.cpp +++ b/flips-cli.cpp @@ -13,6 +13,9 @@ filemap* filemap::create(const char * filename) { return filemap::create_fallbac int main(int argc, char * argv[]) { + char buf[256]; + sprintf(buf, "Welcome to %s", argv[0]); + puts(buf); return flipsmain(argc, argv); } #endif