BUILD/MINOR: cli: fix a build warning introduced by last commit

Commit 35b1b48 ("MINOR: cli: make "show fd" report the mux and mux_ctx
pointers when available") introduced an accidental build warning due to
a missing const statement.
This commit is contained in:
Willy Tarreau 2018-03-29 13:19:37 +02:00
parent 35b1b48c75
commit a833cd90b2

View File

@ -777,7 +777,7 @@ static int cli_io_handler_show_fd(struct appctx *appctx)
struct listener *li = NULL;
struct server *sv = NULL;
struct proxy *px = NULL;
struct mux_ops *mux = NULL;
const struct mux_ops *mux = NULL;
void *ctx = NULL;
uint32_t conn_flags = 0;