summaryrefslogtreecommitdiff
path: root/XMPFiles
diff options
context:
space:
mode:
authorHubert Figuière <hub@figuiere.net>2016-12-07 00:48:35 -0500
committerHubert Figuière <hub@figuiere.net>2016-12-07 00:48:35 -0500
commit038da4693cbacc8a5b9bc2906d126bf39b78d21f (patch)
tree2630a9165a043aeffa32f9b597ee49cd340551ca /XMPFiles
parent1696cff2133f0eab1fea45c164cb771a6e5e4526 (diff)
Fix syntax errors from Adobe code
Diffstat (limited to 'XMPFiles')
-rw-r--r--XMPFiles/source/FormatSupport/SVG_Adapter.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/XMPFiles/source/FormatSupport/SVG_Adapter.cpp b/XMPFiles/source/FormatSupport/SVG_Adapter.cpp
index 750848d..a35fc20 100644
--- a/XMPFiles/source/FormatSupport/SVG_Adapter.cpp
+++ b/XMPFiles/source/FormatSupport/SVG_Adapter.cpp
@@ -182,8 +182,8 @@ void SVG_Adapter::ParseBuffer( const void * buffer, size_t length, bool last /*
#if BanAllEntityUsage
if ( this->isAborted ) {
- XMP_Error error( kXMPErr_BadXML, "DOCTYPE is not allowed" )
- this->NotifyClient( kXMPErrSev_Recoverable, error );
+ XMP_Error error( kXMPErr_BadXML, "DOCTYPE is not allowed" );
+ this->NotifyClient( kXMPErrSev_Recoverable, error );
}
#endif
@@ -215,8 +215,8 @@ XMP_Bool SVG_Adapter::ParseBufferNoThrow( const void * buffer, size_t length, bo
#if BanAllEntityUsage
if ( this->isAborted ) {
- XMP_Error error( kXMPErr_BadXML, "DOCTYPE is not allowed" )
- this->NotifyClient( kXMPErrSev_Recoverable, error );
+ XMP_Error error( kXMPErr_BadXML, "DOCTYPE is not allowed" );
+ this->NotifyClient( kXMPErrSev_Recoverable, error );
}
#endif