Stop convert generating single space filenames
And remove stupid backtick quotes from filenames
diff --git a/MagickCore/nt-feature.c b/MagickCore/nt-feature.c
index b180e66..d7cc8bc 100644
--- a/MagickCore/nt-feature.c
+++ b/MagickCore/nt-feature.c
@@ -544,7 +544,7 @@
type_info);
if (status == MagickFalse)
(void) ThrowMagickException(exception,GetMagickModule(),
- ResourceLimitError,"MemoryAllocationFailed","`%s'",type_info->name);
+ ResourceLimitError,"MemoryAllocationFailed","'%s'",type_info->name);
}
}
RegCloseKey ( reg_key );
@@ -619,7 +619,7 @@
message=GetExceptionMessage(errno);
(void) ThrowMagickException(exception,GetMagickModule(),
- ResourceLimitError,"MemoryAllocationFailed","`%s'",message);
+ ResourceLimitError,"MemoryAllocationFailed","'%s'",message);
message=DestroyString(message);
return(NULL);
}
@@ -652,7 +652,7 @@
message=GetExceptionMessage(errno);
(void) ThrowMagickException(exception,GetMagickModule(),
- ResourceLimitError,"MemoryAllocationFailed","`%s'",message);
+ ResourceLimitError,"MemoryAllocationFailed","'%s'",message);
message=DestroyString(message);
}
GlobalUnlock((HGLOBAL) bitmap_bitsH);