mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 05:34:59 +00:00
tests: Extract constant "storage" in function accumulate_characters
.. to avoid potential reader confusion about where the input character data is coming from: variable "storage" says that more clearly and is consistent with multiple other places in the test suite.
This commit is contained in:
parent
c46543e053
commit
cfe35b96ef
1 changed files with 2 additions and 1 deletions
|
@ -1908,7 +1908,8 @@ accumulate_start_element(void *userData, const XML_Char *name,
|
|||
|
||||
void XMLCALL
|
||||
accumulate_characters(void *userData, const XML_Char *s, int len) {
|
||||
CharData_AppendXMLChars((CharData *)userData, s, len);
|
||||
CharData *const storage = (CharData *)userData;
|
||||
CharData_AppendXMLChars(storage, s, len);
|
||||
}
|
||||
|
||||
void XMLCALL
|
||||
|
|
Loading…
Add table
Reference in a new issue