diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -25,9 +25,9 @@ static void print_catalog(struct icclient_catalog *catalog) icclient_free_catalog(catalog); } -static void print(icclient_fetch_t *fetch) +static void print(icclient_response *response) { - printf("%s\n", fetch->data); + printf("%s\n", response->data); } int main(int argc, char *argv[]) |