mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-11-03 23:28:48 +00:00 
			
		
		
		
	fs_user: Resolve sign conversion warning in GetPriority() (#5396)
Prevents a -Wsign-compare warning from occurring.
This commit is contained in:
		
							parent
							
								
									62753e882e
								
							
						
					
					
						commit
						54a36bc54f
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -617,7 +617,7 @@ void FS_USER::SetPriority(Kernel::HLERequestContext& ctx) {
 | 
			
		|||
void FS_USER::GetPriority(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
    IPC::RequestParser rp(ctx, 0x863, 0, 0);
 | 
			
		||||
 | 
			
		||||
    if (priority == -1) {
 | 
			
		||||
    if (priority == UINT32_MAX) {
 | 
			
		||||
        LOG_INFO(Service_FS, "priority was not set, priority=0x{:X}", priority);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue