aboutsummaryrefslogtreecommitdiff
path: root/cmd.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-10-30 10:59:43 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-10-30 10:59:43 +0000
commit941eab33e9722b26244e7f344311f065eb28ef44 (patch)
tree89f908444a5aa7a6181189535d3f08102efaa670 /cmd.c
parentab097f0c0c7cd6d30767fc63d05731197160aeeb (diff)
downloadrtmux-941eab33e9722b26244e7f344311f065eb28ef44.tar.gz
rtmux-941eab33e9722b26244e7f344311f065eb28ef44.tar.bz2
rtmux-941eab33e9722b26244e7f344311f065eb28ef44.zip
%u -> %d for indexes. Some lint fixes.
Diffstat (limited to 'cmd.c')
-rw-r--r--cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd.c b/cmd.c
index c71d52ee..2f7d3064 100644
--- a/cmd.c
+++ b/cmd.c
@@ -1,4 +1,4 @@
-/* $Id: cmd.c,v 1.22 2007-10-26 16:57:32 nicm Exp $ */
+/* $Id: cmd.c,v 1.23 2007-10-30 10:59:43 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -113,7 +113,7 @@ usage:
void
cmd_exec(struct cmd *cmd, struct cmd_ctx *ctx)
{
- return (cmd->entry->exec(cmd->data, ctx));
+ cmd->entry->exec(cmd->data, ctx);
}
void