aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-04-16 05:55:15 +0000
committerMike Frysinger <vapier@gentoo.org>2006-04-16 05:55:15 +0000
commit4b7b8a58a19ec00a77670e9c86c568a50626e16e (patch)
tree1b0983b74e728a6706beff1bb805431ed9538f12
parent0436b9f482ec690c35488e8d5fc92a7100e0b21e (diff)
downloadbusybox-w32-4b7b8a58a19ec00a77670e9c86c568a50626e16e.tar.gz
busybox-w32-4b7b8a58a19ec00a77670e9c86c568a50626e16e.tar.bz2
busybox-w32-4b7b8a58a19ec00a77670e9c86c568a50626e16e.zip
touchup comment
-rw-r--r--editors/awk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/awk.c b/editors/awk.c
index cce3b562a..e11c8350f 100644
--- a/editors/awk.c
+++ b/editors/awk.c
@@ -45,7 +45,7 @@ typedef struct var_s {
45 double number; 45 double number;
46 char *string; 46 char *string;
47 union { 47 union {
48 int aidx; /* func arg index (on compilation stage) */ 48 int aidx; /* func arg idx (for compilation stage) */
49 struct xhash_s *array; /* array ptr */ 49 struct xhash_s *array; /* array ptr */
50 struct var_s *parent; /* for func args, ptr to actual parameter */ 50 struct var_s *parent; /* for func args, ptr to actual parameter */
51 char **walker; /* list of array elements (for..in) */ 51 char **walker; /* list of array elements (for..in) */