Skip to content

Commit f209ded

Browse files
committed
Fix opencv#2
1 parent fc96cfd commit f209ded

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/datasets/src/track_alov.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ namespace cv
130130
{
131131
string out;
132132
char videoNum[9];
133-
sprintf_s(videoNum, "%u", videoID+1);
133+
sprintf(videoNum, "%u", videoID+1);
134134
out = rootPath + "/alov300++_rectangleAnnotation_full/" + sectionNames[sectionID] + "/" + sectionNames[sectionID] + "_video";
135135

136136
for (unsigned int i = 0; i < 5 - strlen(videoNum); ++i)

0 commit comments

Comments
 (0)