aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/cam/cam.cpp
diff options
context:
space:
mode:
authorSebastian Valle <subv2112@gmail.com>2017-09-30 08:22:14 -0500
committerGitHub <noreply@github.com>2017-09-30 08:22:14 -0500
commita3de996ae7c41bb8d475b47dcd08abdd571cfc73 (patch)
tree016f6866d15fb9a41a15666f492bed352d95b523 /src/core/hle/service/cam/cam.cpp
parentb07af7dda822898e9c8f231c5ddcd1741d93dbef (diff)
parenta13ab958cbba75bc9abd1ca50f3030a10a75784e (diff)
Merge pull request #2962 from huwpascoe/static_cast
Fixed type conversion ambiguity
Diffstat (limited to 'src/core/hle/service/cam/cam.cpp')
-rw-r--r--src/core/hle/service/cam/cam.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/cam/cam.cpp b/src/core/hle/service/cam/cam.cpp
index c9f9e9d95..8172edae8 100644
--- a/src/core/hle/service/cam/cam.cpp
+++ b/src/core/hle/service/cam/cam.cpp
@@ -177,7 +177,7 @@ void CompletionEventCallBack(u64 port_id, int) {
LOG_ERROR(Service_CAM, "The destination size (%u) doesn't match the source (%zu)!",
port.dest_size, buffer_size);
}
- Memory::WriteBlock(port.dest, buffer.data(), std::min<u32>(port.dest_size, buffer_size));
+ Memory::WriteBlock(port.dest, buffer.data(), std::min<size_t>(port.dest_size, buffer_size));
}
port.is_receiving = false;