~ubuntu-branches/ubuntu/raring/libwmf/raring-proposed

« back to all changes in this revision

Viewing changes to src/xml.c

  • Committer: Bazaar Package Importer
  • Author(s): Matej Vela
  • Date: 2006-08-05 12:15:57 UTC
  • mto: (4.1.1 etch)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20060805121557-tipvoowozf17018a
Tags: upstream-0.2.8.4
ImportĀ upstreamĀ versionĀ 0.2.8.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
451
451
 
452
452
        memset ((void*) (&sax), 0, sizeof (xmlSAXHandler));
453
453
 
454
 
        sax.startElement = xml_start;
455
 
        sax.endElement   = xml_end;
456
 
        sax.characters   = xml_data;
 
454
        sax.startElement = (startElementSAXFunc)xml_start;
 
455
        sax.endElement   = (endElementSAXFunc)xml_end;
 
456
        sax.characters   = (charactersSAXFunc)xml_data;
457
457
 
458
458
        ctxt = xmlCreateFileParserCtxt (wmfxml_filename);
459
459