Skip to content

Commit 435cf74

Browse files
author
Ilia Alshanetsky
committed
MFH: removed unused var
1 parent 9919125 commit 435cf74

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ext/xmlrpc/libxmlrpc/xml_element.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ static const char rcsid[] = "#(@) $Id$";
4444
* 06/2000
4545
* HISTORY
4646
* $Log$
47+
* Revision 1.9.4.1 2006/07/30 11:34:02 tony2001
48+
* MFH: fix compile warnings (#38257)
49+
*
4750
* Revision 1.9 2005/04/22 11:06:53 jorton
4851
* Fixed bug #32797 (invalid C code in xmlrpc extension).
4952
*
@@ -713,7 +716,7 @@ xml_element* xml_elem_parse_buf(const char* in_buf, int len, XML_ELEM_INPUT_OPTI
713716
int line_num = XML_GetCurrentLineNumber(parser);
714717
int col_num = XML_GetCurrentColumnNumber(parser);
715718
long byte_idx = XML_GetCurrentByteIndex(parser);
716-
int byte_total = XML_GetCurrentByteCount(parser);
719+
/* int byte_total = XML_GetCurrentByteCount(parser); */
717720
const char * error_str = XML_ErrorString(err_code);
718721
if(byte_idx >= 0) {
719722
snprintf(buf,

0 commit comments

Comments
 (0)