Naming convention typos.

This commit is contained in:
Dennis Luxen 2010-08-10 17:11:52 +00:00
parent 65351959fe
commit 85388b3112

View File

@ -18,8 +18,8 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
or see http://www.gnu.org/licenses/agpl.txt. or see http://www.gnu.org/licenses/agpl.txt.
*/ */
#ifndef BZ2INPUTREADER_H #ifndef INPUTREADERFACTORY_H
#define BZ2INPUTREADER_H #define INPUTREADERFACTORY_H
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
@ -74,11 +74,10 @@ xmlTextReaderPtr inputReaderFactory( const char* name )
delete context; delete context;
return NULL; return NULL;
} }
return xmlReaderForIO( readFromBz2Stream, closeBz2Stream, (void*) context, NULL, NULL, 0 ); return xmlReaderForIO( readFromBz2Stream, closeBz2Stream, (void*) context, NULL, NULL, 0 );
} else { } else {
return xmlNewTextReaderFilename(name); return xmlNewTextReaderFilename(name);
} }
} }
#endif // BZ2INPUTREADER_H #endif // INPUTREADERFACTORY_H