aboutsummaryrefslogtreecommitdiff
path: root/src/lutris.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lutris.c')
-rw-r--r--src/lutris.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lutris.c b/src/lutris.c
index 4bc0f0f..b80d830 100644
--- a/src/lutris.c
+++ b/src/lutris.c
@@ -22,7 +22,7 @@ COMMAND(lutris, install)
if (argc == 2)
{
struct script_t installer = lutris_getInstaller(argv[1]);
- char inp;
+ int inp;
if (installer.error == NONE)
{
@@ -30,7 +30,7 @@ COMMAND(lutris, install)
printf("Install %s - %s to the current directory?\nThis may download files and install wine versions\n(y/n)\n", installer.name, installer.version);
- if ((inp=getchar()) == 'y')
+ if ((inp = getchar()) == 'y')
{
// fetch all files required by installer
// TODO: think about storing files on disk for larger files