Fixed a bug in an assert

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%404119
This commit is contained in:
Davis King 2011-02-03 00:23:04 +00:00
parent 61e7e93a62
commit 8f118e3e12
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ namespace dlib
"\tvoid spatially_filter_image()"
<< "\n\tYou can't give a scale of zero"
);
DLIB_ASSERT(is_same_object(in_img, out_img),
DLIB_ASSERT(is_same_object(in_img, out_img) == false,
"\tvoid spatially_filter_image()"
<< "\n\tYou must give two different image objects"
);