diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2020-12-17 15:03:27 +0100 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2020-12-17 15:03:27 +0100 |
commit | 3c0fae06b5ae2c59bacd2e3d6a1033f864cd368e (patch) | |
tree | 76c98db3ac25a441be13189e185ef2a586484384 /src/lutris.c | |
parent | 1ca0317a351f3075b2ea0b9bb5e59ccb4bcb960b (diff) | |
download | polecat-3c0fae06b5ae2c59bacd2e3d6a1033f864cd368e.tar.gz polecat-3c0fae06b5ae2c59bacd2e3d6a1033f864cd368e.zip |
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)
Diffstat (limited to 'src/lutris.c')
-rw-r--r-- | src/lutris.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |