regcomp.c: Remove unnecessary variable
authorKarl Williamson <public@khwilliamson.com>
Thu, 16 Jan 2014 17:26:16 +0000 (10:26 -0700)
committerKarl Williamson <public@khwilliamson.com>
Thu, 16 Jan 2014 17:53:05 +0000 (10:53 -0700)
commit73b1d836e48dd52697510e35fe72102cb3234946
tree117c1cae966d5c1f5e456c392f36346a45becaeb
parentdbfdbd2685aa055f4e4a3b9cb568635771805959
regcomp.c: Remove unnecessary variable

This variable is set and tested just once in all but one instance,
before being discarded.  In that one instance, it's tested twice.  The
underlying expression is just extracting a field from a structure.
There's no efficiency gain to using the variable, so might as well not
have it.
regcomp.c