Changeset 2177
- Timestamp:
- 09/23/08 21:26:30 (4 months ago)
- Files:
-
- libswish3/trunk/src/libswish3/parser.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
libswish3/trunk/src/libswish3/parser.c
r2176 r2177 259 259 260 260 if (SWISH_DEBUG & SWISH_DEBUG_MEMORY) { 261 SWISH_DEBUG_MSG("parser ptr 0x%x", ( int)p);261 SWISH_DEBUG_MSG("parser ptr 0x%x", (long int)p); 262 262 } 263 263 … … 1853 1853 ) 1854 1854 { 1855 htmlDocPtrret;1855 int ret; 1856 1856 htmlParserCtxtPtr ctxt; 1857 1857 htmlSAXHandlerPtr oldsax = 0; … … 1879 1879 ctxt->userData = parser_data; 1880 1880 } 1881 htmlParseDocument(ctxt);1881 ret = htmlParseDocument(ctxt); 1882 1882 1883 1883 if (sax != 0) { … … 1886 1886 } 1887 1887 1888 return ret ? 0 : 1;1888 return ret; 1889 1889 } 1890 1890
