mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-13 08:02:56 +00:00
examples/outline.c: Make "Buff" a local variable
This commit is contained in:
parent
7eaccc0332
commit
bd351fad20
1 changed files with 1 additions and 2 deletions
|
@ -53,8 +53,6 @@
|
|||
|
||||
#define BUFFSIZE 8192
|
||||
|
||||
char Buff[BUFFSIZE];
|
||||
|
||||
int Depth;
|
||||
|
||||
static void XMLCALL
|
||||
|
@ -85,6 +83,7 @@ end(void *data, const XML_Char *el) {
|
|||
|
||||
int
|
||||
main(int argc, char *argv[]) {
|
||||
char Buff[BUFFSIZE];
|
||||
XML_Parser parser = XML_ParserCreate(NULL);
|
||||
(void)argc;
|
||||
(void)argv;
|
||||
|
|
Loading…
Add table
Reference in a new issue