diff options
author | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-04-16 05:55:15 +0000 |
---|---|---|
committer | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-04-16 05:55:15 +0000 |
commit | ab1ba183deb012132c28b3f8467eaa9b6adfa665 (patch) | |
tree | 1b0983b74e728a6706beff1bb805431ed9538f12 /editors | |
parent | aeadbf93fe6a1de2258e924e149cb336bcfe4c9d (diff) | |
download | busybox-w32-ab1ba183deb012132c28b3f8467eaa9b6adfa665.tar.gz busybox-w32-ab1ba183deb012132c28b3f8467eaa9b6adfa665.tar.bz2 busybox-w32-ab1ba183deb012132c28b3f8467eaa9b6adfa665.zip |
touchup comment
git-svn-id: svn://busybox.net/trunk/busybox@14886 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'editors')
-rw-r--r-- | editors/awk.c | 2 |
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) */ |