projects
/
imagemagick
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d4b6a13
)
Corrected mistake.
author
Dirk Lemstra
<dirk@lemstra.org>
Tue, 18 Dec 2018 20:48:02 +0000
(21:48 +0100)
committer
Dirk Lemstra
<dirk@lemstra.org>
Tue, 18 Dec 2018 20:48:02 +0000
(21:48 +0100)
Magick++/lib/Magick++/STL.h
patch
|
blob
|
history
diff --git
a/Magick++/lib/Magick++/STL.h
b/Magick++/lib/Magick++/STL.h
index 8adc6333dcf4855c4b78fabaf08796d91295f001..6032796b818eeeba9e33e904f2c5b964dfefbf49 100644
(file)
--- a/
Magick++/lib/Magick++/STL.h
+++ b/
Magick++/lib/Magick++/STL.h
@@
-2653,7
+2653,7
@@
namespace Magick
void pingImages(Container *sequence_,const std::string &imageSpec_,
ReadOptions &options)
{
- options.ping
=true
;
+ options.ping
(true)
;
readImages(sequence_,imageSpec_,options);
}
@@
-2667,7
+2667,7
@@
namespace Magick
template<class Container>
void pingImages(Container *sequence_,const Blob &blob_,ReadOptions &options)
{
- options.ping
=true
;
+ options.ping
(true)
;
readImages(sequence_,blob_,options);
}