Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed XML elements. Element's end tag is now properly formed.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkauppila committed Jun 23, 2011
1 parent 8aeb539 commit 2b17754
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test-automation/xml.c
Expand Up @@ -234,7 +234,7 @@ XMLCloseElement(const char *tag)
TagList *temp = openTag->next;

memset(buffer, 0, bufferSize);
snprintf(buffer, bufferSize, "<%s>", openTag->tag);
snprintf(buffer, bufferSize, "</%s>", openTag->tag);
logger(buffer);

const int openTagSize = SDL_strlen(openTag->tag);
Expand Down

0 comments on commit 2b17754

Please sign in to comment.