diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2015-02-07 22:29:14 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2015-02-07 22:29:14 -0800 |
commit | 68467cfff7a90680115cfc41c35b5ea693c74a3b (patch) | |
tree | 17a77576b9bcd90490492ecd98ae3b615c0530fe /src/base/ver/verStream.c | |
parent | 55c5c1b58f3f9cd1b534ad11dbec6ba7a7813194 (diff) | |
download | abc-68467cfff7a90680115cfc41c35b5ea693c74a3b.tar.gz abc-68467cfff7a90680115cfc41c35b5ea693c74a3b.tar.bz2 abc-68467cfff7a90680115cfc41c35b5ea693c74a3b.zip |
Fixed a typo in variable names.
Diffstat (limited to 'src/base/ver/verStream.c')
-rw-r--r-- | src/base/ver/verStream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/ver/verStream.c b/src/base/ver/verStream.c index 0d16e74d..59706311 100644 --- a/src/base/ver/verStream.c +++ b/src/base/ver/verStream.c @@ -48,7 +48,7 @@ struct Ver_Stream_t_ char * pBufferEnd; // the first position not used by currently loaded data char * pBufferStop; // the position where loading new data will be done // tokens given to the user - char pChars[VER_WORD_SIZE+5]; // temporary storage for a word (plus end-of-string and two parantheses) + char pChars[VER_WORD_SIZE+5]; // temporary storage for a word (plus end-of-string and two parentheses) int nChars; // the total number of characters in the word // status of the parser int fStop; // this flag goes high when the end of file is reached |