mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-10 17:17:06 +02:00
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:
parent
35b1b48c75
commit
a833cd90b2
@ -777,7 +777,7 @@ static int cli_io_handler_show_fd(struct appctx *appctx)
|
|||||||
struct listener *li = NULL;
|
struct listener *li = NULL;
|
||||||
struct server *sv = NULL;
|
struct server *sv = NULL;
|
||||||
struct proxy *px = NULL;
|
struct proxy *px = NULL;
|
||||||
struct mux_ops *mux = NULL;
|
const struct mux_ops *mux = NULL;
|
||||||
void *ctx = NULL;
|
void *ctx = NULL;
|
||||||
uint32_t conn_flags = 0;
|
uint32_t conn_flags = 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user