From 3c0fae06b5ae2c59bacd2e3d6a1033f864cd368e Mon Sep 17 00:00:00 2001 From: Jan200101 Date: Thu, 17 Dec 2020 15:03:27 +0100 Subject: replace gnu style quoting with normal quoting, comment command macros, … - gnu style quoting (`text') has been replaced with normal quoting ('text') - the command macros defined in command.h have been commented to explain how they are intended to be used and why they are how they - the macro that generates the command group function now prints a message if the given command has not been found (this probably needs to be extended to the other commands to be consistent) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lutris.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lutris.c') diff --git a/src/lutris.c b/src/lutris.c index a5f8ebd..b53ebda 100644 --- a/src/lutris.c +++ b/src/lutris.c @@ -182,7 +182,7 @@ COMMAND(lutris, info) } else { - printf("Couldn't find an installer by the name `%s'\n", argv[1]); + printf("Couldn't find an installer by the name '%s'\n", argv[1]); } lutris_freeInstaller(&installer); -- cgit v1.2.3