summaryrefslogtreecommitdiff
path: root/rcon.h
diff options
context:
space:
mode:
authorDavid Härdeman <david@hardeman.nu>2020-06-22 10:50:15 +0200
committerDavid Härdeman <david@hardeman.nu>2020-06-22 10:50:15 +0200
commit31afd2aaaeb76a12e232eab0fb6a550b73948737 (patch)
tree7125a54d09904eef6c558a682cff0a7976529fad /rcon.h
parent41dc97f5d0dbcfe4399656c9aabb597f6366ca23 (diff)
Make struct cfg global and make the corresponding changes throughout
Diffstat (limited to 'rcon.h')
-rw-r--r--rcon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rcon.h b/rcon.h
index 8b410e1..6604304 100644
--- a/rcon.h
+++ b/rcon.h
@@ -3,8 +3,8 @@
void rcon_refdump(struct rcon *rcon);
-void rcon_delete(struct cfg *cfg, struct server *server);
+void rcon_delete(struct server *server);
-void rcon_init(struct cfg *cfg, struct server *server);
+void rcon_init(struct server *server);
#endif