Commit 2c9b8e83 authored by Vladimir's avatar Vladimir

Fixed build error

parent 85fdd132
......@@ -129,7 +129,7 @@ namespace cv
else if (frameNum < 1000) strcat(fullPath, "00");
else if (frameNum < 10000) strcat(fullPath, "0");
_itoa(frameNum, numStr, 10);
sprintf(numStr, "%d", frameNum);
strcat(fullPath, numStr);
if (flagPNG) strcat(fullPath, ".png");
else strcat(fullPath, ".jpg");
......
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