diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2021-05-18 11:42:27 +0200 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2021-05-18 11:44:22 +0200 |
commit | 8e7d62f14bd401e4cc8737c06f16e6978b0b9e57 (patch) | |
tree | 94a3352969e287e5ac6040d2d2829e9656f4d492 /src/lutris.c | |
parent | 52f8abc09b0d97608ba9d5b57ea96c48a1390384 (diff) | |
download | polecat-8e7d62f14bd401e4cc8737c06f16e6978b0b9e57.tar.gz polecat-8e7d62f14bd401e4cc8737c06f16e6978b0b9e57.zip |
improve cmake files, add simple curl mock, clean up on download error
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 0dd999b..b7c4da6 100644 --- a/src/lutris.c +++ b/src/lutris.c @@ -20,7 +20,7 @@ static const struct Flag lutris_flags[] = { { .name = "help", .variant = TWO, .func = lutris_help, .description = "show this message"} }; -char* getpwd() +static char* getpwd() { char* pwd = malloc(255); pwd = getcwd(pwd, 255); |