summaryrefslogtreecommitdiffstats
path: root/bfs.h
diff options
context:
space:
mode:
Diffstat (limited to 'bfs.h')
-rw-r--r--bfs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/bfs.h b/bfs.h
index 42bbdd4..beb5d82 100644
--- a/bfs.h
+++ b/bfs.h
@@ -167,10 +167,10 @@ struct expr {
/** Whether this expression has no side effects. */
bool pure;
- /** The command line arguments resulting in this expression. */
- char **args;
- /** The number of command line arguments. */
- size_t nargs;
+ /** The number of command line arguments for this expression. */
+ size_t argc;
+ /** The command line arguments comprising this expression. */
+ char **argv;
/** The optional comparison flag. */
enum cmpflag cmpflag;