diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-16 21:43:43 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-16 21:43:43 +0000 |
commit | 685930623534e1d0c6cd9dff91bb67b6593f844c (patch) | |
tree | cb015627bbef0fac929c77d26337e6083d71cdfa /key-bindings.c | |
parent | 85e4e820b606d2e8bbd71ebd5afc78468ef936be (diff) | |
download | rtmux-685930623534e1d0c6cd9dff91bb67b6593f844c.tar.gz rtmux-685930623534e1d0c6cd9dff91bb67b6593f844c.tar.bz2 rtmux-685930623534e1d0c6cd9dff91bb67b6593f844c.zip |
Ooops use ->client here, not cmdclient.
Diffstat (limited to 'key-bindings.c')
-rw-r--r-- | key-bindings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/key-bindings.c b/key-bindings.c index 23d4c869..e8a85618 100644 --- a/key-bindings.c +++ b/key-bindings.c @@ -1,4 +1,4 @@ -/* $Id: key-bindings.c,v 1.13 2007-11-16 21:12:31 nicm Exp $ */ +/* $Id: key-bindings.c,v 1.14 2007-11-16 21:43:43 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -159,7 +159,7 @@ key_bindings_error(struct cmd_ctx *ctx, const char *fmt, ...) void key_bindings_print(struct cmd_ctx *ctx, const char *fmt, ...) { - struct client *c = ctx->cmdclient; + struct client *c = ctx->client; struct hdr hdr; va_list ap; char *msg; |