diff options
author | Jim Meyering <jim@meyering.net> | 1995-11-06 17:06:24 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-11-06 17:06:24 +0000 |
commit | fd798dd6fe9b229c889136efc5043b3b66592e03 (patch) | |
tree | 5ec97b05abe37d4e8ef503b964d2941330ce8e1c | |
parent | dd8b68966f4d688a27a417779209ab94ea42fe84 (diff) | |
download | coreutils-fd798dd6fe9b229c889136efc5043b3b66592e03.tar.xz |
From FSF.
-rw-r--r-- | lib/regex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/regex.c b/lib/regex.c index e5483f8e5..0a6ebffc3 100644 --- a/lib/regex.c +++ b/lib/regex.c @@ -1297,7 +1297,7 @@ typedef struct { \ for (this_reg = highest_active_reg; this_reg > high_reg; this_reg--) \ { \ - reg_info[this_reg].word = 0; \ + reg_info[this_reg].word.integer = 0; \ regend[this_reg] = 0; \ regstart[this_reg] = 0; \ } \ |