diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/dxvk.c | 2 | ||||
-rw-r--r-- | src/lutris.c | 1 | ||||
-rw-r--r-- | src/wine.c | 12 |
3 files changed, 4 insertions, 11 deletions
@@ -10,7 +10,6 @@ #include "dxvk.h" #include "net.h" #include "tar.h" -#include "common.h" #include "config.h" const static struct Command dxvk_commands[] = { @@ -62,6 +61,7 @@ COMMAND(dxvk, download) { printf("Extracting %s\n", name); extract(archive, dxvkdir); + fprintf(stderr, "Done\n"); } else { diff --git a/src/lutris.c b/src/lutris.c index 75d66e0..5e213ff 100644 --- a/src/lutris.c +++ b/src/lutris.c @@ -7,7 +7,6 @@ #include "lutris.h" #include "net.h" -#include "common.h" const static struct Command lutris_commands[] = { #ifdef DEBUG @@ -5,18 +5,14 @@ #include <json.h> #include <libgen.h> #include <unistd.h> -#include <linux/limits.h> -#include <sys/types.h> -#include <sys/stat.h> #include <sys/utsname.h> #include <dirent.h> #include "wine.h" #include "net.h" #include "tar.h" -#include "common.h" #include "config.h" - +#include "common.h" const static struct Command wine_commands[] = { { .name = "download", .func = wine_download, .description = "download and extract a wine version" }, @@ -67,6 +63,7 @@ COMMAND(wine, download) { fprintf(stderr, "Extracting %s\n", name); extract(archive, winedir); + fprintf(stderr, "Done\n"); } else { @@ -231,11 +228,8 @@ COMMAND(wine, run) } } - else - { - fprintf(stderr, "Specify a what wine version to run.\nUse `" NAME " wine list-installed' to list available versions\n"); - } + fprintf(stderr, "Specify a what wine version to run.\nUse `" NAME " wine list-installed' to list available versions\n"); return 0; } |