]> err.no Git - varnish/commitdiff
Don't constify the cli argument to cli_out()
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Sat, 19 Jul 2008 09:44:40 +0000 (09:44 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Sat, 19 Jul 2008 09:44:40 +0000 (09:44 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2956 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/include/cli_priv.h
varnish-cache/lib/libvarnish/cli_common.c

index c0a12181edcbcfe7619f1ba610eee7c5a4f1e6f8..2ff5677cf289d0d5e9610f44c669e6f5aa668163 100644 (file)
@@ -53,7 +53,7 @@ struct cli_proto {
 };
 
 /* The implementation must provide these functions */
-void cli_out(const struct cli *cli, const char *fmt, ...);
+void cli_out(struct cli *cli, const char *fmt, ...);
 void cli_param(struct cli *cli);
 void cli_result(struct cli *cli, unsigned r);
 
index d375428d465407aa0f9e8897df1d1e012aabfc9c..7fda74e0691645967374c5e0dd90d75f7b57af13 100644 (file)
@@ -55,7 +55,7 @@
 #include "cli_common.h"
 
 void
-cli_out(const struct cli *cli, const char *fmt, ...)
+cli_out(struct cli *cli, const char *fmt, ...)
 {
        va_list ap;