aboutsummaryrefslogtreecommitdiff
path: root/src/lutris.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lutris.c')
-rw-r--r--src/lutris.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lutris.c b/src/lutris.c
index abef447..3f20f37 100644
--- a/src/lutris.c
+++ b/src/lutris.c
@@ -49,8 +49,8 @@ COMMAND(lutris, search)
str = realloc(str, allocsize);
if (!str) return 1;
lutris_escapeString(str, allocsize);
- char* url = malloc(strlen(GAME_SEARCH_API) + strlen(str));
- sprintf(url, GAME_SEARCH_API, str);
+ char* url = malloc(strlen(LUTRIS_GAME_SEARCH_API) + strlen(str));
+ sprintf(url, LUTRIS_GAME_SEARCH_API, str);
struct json_object* queryresult = fetchJSON(url);
free(str);
@@ -103,8 +103,8 @@ COMMAND(lutris, list)
str = realloc(str, allocsize);
if (!str) return 1;
lutris_escapeString(str, allocsize);
- char* url = malloc(strlen(GAME_INSTALLER_API) + strlen(str));
- sprintf(url, GAME_INSTALLER_API, str);
+ char* url = malloc(strlen(LUTRIS_GAME_INSTALLER_API) + strlen(str));
+ sprintf(url, LUTRIS_GAME_INSTALLER_API, str);
struct json_object* queryresult = fetchJSON(url);
free(str);