mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-11-03 23:28:48 +00:00 
			
		
		
		
	fixed bug with printing std::string in log messages
This commit is contained in:
		
							parent
							
								
									795d6bf5b7
								
							
						
					
					
						commit
						9d1a17ca88
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -23,13 +23,13 @@ void GetServiceHandle() {
 | 
				
			||||||
    std::string port_name = std::string((const char*)&cmd_buff[1], 0, Service::kMaxPortSize);
 | 
					    std::string port_name = std::string((const char*)&cmd_buff[1], 0, Service::kMaxPortSize);
 | 
				
			||||||
    Service::Interface* service = Service::g_manager->FetchFromPortName(port_name);
 | 
					    Service::Interface* service = Service::g_manager->FetchFromPortName(port_name);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    NOTICE_LOG(OSHLE, "SRV::Sync - GetHandle - port: %s, handle: 0x%08X", port_name, 
 | 
					    NOTICE_LOG(OSHLE, "SRV::Sync - GetHandle - port: %s, handle: 0x%08X", port_name.c_str(), 
 | 
				
			||||||
        service->GetUID());
 | 
					        service->GetUID());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (NULL != service) {
 | 
					    if (NULL != service) {
 | 
				
			||||||
        cmd_buff[3] = service->GetUID();
 | 
					        cmd_buff[3] = service->GetUID();
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
        ERROR_LOG(OSHLE, "Service %s does not exist", port_name);
 | 
					        ERROR_LOG(OSHLE, "Service %s does not exist", port_name.c_str());
 | 
				
			||||||
        res = -1;
 | 
					        res = -1;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    cmd_buff[1] = res;
 | 
					    cmd_buff[1] = res;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue