diff options
Diffstat (limited to 'bin/ksh/tree.h')
-rw-r--r-- | bin/ksh/tree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ksh/tree.h b/bin/ksh/tree.h index e89d5308f59..49092ae3301 100644 --- a/bin/ksh/tree.h +++ b/bin/ksh/tree.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tree.h,v 1.9 2004/12/18 20:55:52 millert Exp $ */ +/* $OpenBSD: tree.h,v 1.10 2005/03/28 21:28:22 deraadt Exp $ */ /* * command trees for compile/execute @@ -22,7 +22,7 @@ struct op { char **args; /* arguments to a command */ char **vars; /* variable assignments */ struct ioword **ioact; /* IO actions (eg, < > >>) */ - struct op *left, *right; /* descendents */ + struct op *left, *right; /* descendents */ char *str; /* word for case; identifier for for, * select, and functions; * path to execute for TEXEC; |