Skip to content

Commit 9de87d9

Browse files
committed
Merge pull request opencv#10338 from hrnr:fix-build
2 parents cac4a7e + 3dbf392 commit 9de87d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/core/src/ocl.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3660,9 +3660,9 @@ struct Program::Impl
36603660
CV_Assert(src_);
36613661
CV_Assert(src_->kind_ == ProgramSource::Impl::PROGRAM_SOURCE_CODE);
36623662
CV_Assert(handle == NULL);
3663-
CV_INSTRUMENT_REGION_OPENCL_COMPILE(cv::format("Build OpenCL program: %s/%s %" PRIx64 " options: %s",
3663+
CV_INSTRUMENT_REGION_OPENCL_COMPILE(cv::format("Build OpenCL program: %s/%s %s options: %s",
36643664
sourceModule_.c_str(), sourceName_.c_str(),
3665-
src.hash(), buildflags.c_str()).c_str());
3665+
src_->sourceHash_.c_str(), buildflags.c_str()).c_str());
36663666

36673667
CV_LOG_VERBOSE(NULL, 0, "Compile... " << sourceModule_.c_str() << "/" << sourceName_.c_str());
36683668

0 commit comments

Comments
 (0)