aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-11 00:57:48 -0500
committerbunnei <bunneidev@gmail.com>2015-01-11 00:57:48 -0500
commitc6906319f3a9ba1b33b8b4fec41cce8fd5a4fe7c (patch)
tree8a5260f8e44f637f90e3c84565be04e4d84cedc3 /src/core/hle/svc.cpp
parent463d0a373be11b6c117bfb0cc71418dfd5272679 (diff)
parent95be6ad7aead770666d97309e2e1aef9cfd808ec (diff)
Merge pull request #459 from archshift/logs
Small additions and fixes to logging
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r--src/core/hle/svc.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index ba620bd0f..d3b4483ca 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -185,7 +185,6 @@ static Result WaitSynchronizationN(s32* out, Handle* handles, s32 handle_count,
/// Create an address arbiter (to allocate access to shared resources)
static Result CreateAddressArbiter(u32* arbiter) {
- LOG_TRACE(Kernel_SVC, "called");
Handle handle = Kernel::CreateAddressArbiter();
*arbiter = handle;
return 0;