diff options
| author | 2018-02-14 00:44:26 -0500 | |
|---|---|---|
| committer | 2018-02-14 01:52:54 -0500 | |
| commit | 2d388a75f0f057821d8747cabcb3fc8ae74f28d7 (patch) | |
| tree | 9729dd573cdb8c436d177c3ecb35d102bf27a962 /src | |
| parent | nvhost_ctrl_gpu: Silence formatting specifier warnings (diff) | |
| download | yuzu-2d388a75f0f057821d8747cabcb3fc8ae74f28d7.tar.gz yuzu-2d388a75f0f057821d8747cabcb3fc8ae74f28d7.tar.xz yuzu-2d388a75f0f057821d8747cabcb3fc8ae74f28d7.zip | |
nvhost_ctrl: Silence formatting specifier warnings
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp b/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp index c0e35237a..ee99ab280 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp | |||
| @@ -11,8 +11,8 @@ namespace Nvidia { | |||
| 11 | namespace Devices { | 11 | namespace Devices { |
| 12 | 12 | ||
| 13 | u32 nvhost_ctrl::ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) { | 13 | u32 nvhost_ctrl::ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) { |
| 14 | LOG_DEBUG(Service_NVDRV, "called, command=0x%08x, input_size=0x%lx, output_size=0x%lx", command, | 14 | LOG_DEBUG(Service_NVDRV, "called, command=0x%08x, input_size=0x%zx, output_size=0x%zx", |
| 15 | input.size(), output.size()); | 15 | command.raw, input.size(), output.size()); |
| 16 | 16 | ||
| 17 | switch (static_cast<IoctlCommand>(command.raw)) { | 17 | switch (static_cast<IoctlCommand>(command.raw)) { |
| 18 | case IoctlCommand::IocGetConfigCommand: | 18 | case IoctlCommand::IocGetConfigCommand: |