aboutsummaryrefslogtreecommitdiff
path: root/mpiosh/command.c
diff options
context:
space:
mode:
authorcrunchy <crunchy>2002-10-29 20:03:33 +0000
committercrunchy <crunchy>2002-10-29 20:03:33 +0000
commitc7351455575348d9d9847604069ee15132f2d8e0 (patch)
tree042afb35dc47c212456af5a5543c2c4e65763463 /mpiosh/command.c
parent037e02905b802686be908d4f8cd989f0c5002b99 (diff)
downloadmpiosh-c7351455575348d9d9847604069ee15132f2d8e0.tar.gz
mpiosh-c7351455575348d9d9847604069ee15132f2d8e0.tar.bz2
mpiosh-c7351455575348d9d9847604069ee15132f2d8e0.zip
a special crunchy checkin: no testing;-)
Diffstat (limited to 'mpiosh/command.c')
-rw-r--r--mpiosh/command.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mpiosh/command.c b/mpiosh/command.c
index 338ee8d..9c42a8c 100644
--- a/mpiosh/command.c
+++ b/mpiosh/command.c
@@ -2,7 +2,7 @@
*
* Author: Andreas Buesching <crunchy@tzi.de>
*
- * $Id: command.c,v 1.2 2002/10/12 20:06:22 crunchy Exp $
+ * $Id: command.c,v 1.3 2002/10/29 20:03:35 crunchy Exp $
*
* Copyright (C) 2001 Andreas Büsching <crunchy@tzi.de>
*
@@ -64,10 +64,10 @@ mpiosh_command_split_line(char *line)
return cmds;
}
-mpiosh_cmd_t *
+struct mpiosh_cmd_t *
mpiosh_command_find(char *line)
{
- mpiosh_cmd_t *cmd = commands;
+ struct mpiosh_cmd_t *cmd = commands;
while (cmd->cmd) {
if (strstr(line, cmd->cmd) == line) {