Commit a201233b authored by Andrey Kamaev's avatar Andrey Kamaev

Fix warning in Android camera code

parent 36f91226
...@@ -272,7 +272,7 @@ std::string CameraWrapperConnector::getDefaultPathLibFolder() ...@@ -272,7 +272,7 @@ std::string CameraWrapperConnector::getDefaultPathLibFolder()
{ {
char path[128]; char path[128];
sprintf(path, "/data/data/org.opencv.lib_v%d%d_%s/lib/", CV_MAJOR_VERSION, CV_MINOR_VERSION, packageList[i].c_str()); sprintf(path, "/data/data/org.opencv.lib_v%d%d_%s/lib/", CV_MAJOR_VERSION, CV_MINOR_VERSION, packageList[i].c_str());
LOGD("Trying package \"%s\" (\"%s\")", packageList[i], path); LOGD("Trying package \"%s\" (\"%s\")", packageList[i].c_str(), path);
DIR* dir = opendir(path); DIR* dir = opendir(path);
if (!dir) if (!dir)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment