linux-user: correct print_timeval() swap tv_sec and tv_usec
Signed-off-by: Laurent Vivier <Laurent@Vivier.EU> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
		
							parent
							
								
									79dd77de12
								
							
						
					
					
						commit
						910ee4e5f4
					
				| 
						 | 
					@ -682,7 +682,7 @@ print_timeval(abi_ulong tv_addr, int last)
 | 
				
			||||||
        if (!tv)
 | 
					        if (!tv)
 | 
				
			||||||
            return;
 | 
					            return;
 | 
				
			||||||
        gemu_log("{" TARGET_ABI_FMT_ld "," TARGET_ABI_FMT_ld "}%s",
 | 
					        gemu_log("{" TARGET_ABI_FMT_ld "," TARGET_ABI_FMT_ld "}%s",
 | 
				
			||||||
            tv->tv_sec, tv->tv_usec, get_comma(last));
 | 
					            tswapal(tv->tv_sec), tswapal(tv->tv_usec), get_comma(last));
 | 
				
			||||||
        unlock_user(tv, tv_addr, 0);
 | 
					        unlock_user(tv, tv_addr, 0);
 | 
				
			||||||
    } else
 | 
					    } else
 | 
				
			||||||
        gemu_log("NULL%s", get_comma(last));
 | 
					        gemu_log("NULL%s", get_comma(last));
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue