Commit 020b1289 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Don't constify the cli argument to cli_out()



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2956 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent ac0d9f5c
...@@ -53,7 +53,7 @@ struct cli_proto { ...@@ -53,7 +53,7 @@ struct cli_proto {
}; };
/* The implementation must provide these functions */ /* 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_param(struct cli *cli);
void cli_result(struct cli *cli, unsigned r); void cli_result(struct cli *cli, unsigned r);
......
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
#include "cli_common.h" #include "cli_common.h"
void void
cli_out(const struct cli *cli, const char *fmt, ...) cli_out(struct cli *cli, const char *fmt, ...)
{ {
va_list ap; va_list ap;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment