aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/client.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client.h b/src/client.h
index 5bc3f5c..471a7be 100644
--- a/src/client.h
+++ b/src/client.h
@@ -15,9 +15,9 @@ struct settings {
struct client;
-int client_create(struct client **, const struct settings *);
+int client_create(struct client **);
void client_destroy(struct client *);
-int client_main(const struct client *, const char **argv);
+int client_main(const struct client *, const struct settings *, const char **argv);
#endif