core: fixed error message to avoid confusion

This commit is contained in:
Thang Tran 2019-08-04 17:17:03 +02:00
parent f18cbd036a
commit d659eb9327

View File

@ -716,7 +716,7 @@ public:
else if(strncmp( bufPtr, xml_signature, strlen(xml_signature) ) == 0)
fmt = FileStorage::FORMAT_XML;
else if(strbufsize == bufOffset)
CV_Error(CV_BADARG_ERR, "Input file is empty");
CV_Error(CV_BADARG_ERR, "Input file is invalid");
else
CV_Error(CV_BADARG_ERR, "Unsupported file storage format");