diff options
Diffstat (limited to '')
-rw-r--r-- | bounce.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bounce.h b/bounce.h index 434a1f8..129dd7b 100644 --- a/bounce.h +++ b/bounce.h @@ -45,9 +45,9 @@ bool verbose; enum { ParamCap = 15 }; struct Message { - const char *origin; - const char *cmd; - const char *params[ParamCap]; + char *origin; + char *cmd; + char *params[ParamCap]; }; static inline struct Message parse(char *line) { |