Module: wine Branch: master Commit: cb13ee3bf1f90195bf1e5050d54d28fcebb2e61e URL: http://source.winehq.org/git/wine.git/?a=commit;h=cb13ee3bf1f90195bf1e5050d5...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Fri Aug 25 08:24:48 2017 +0000
ntdll: Use standard wine_dbgstr_longlong.
Signed-off-by: Alistair Leslie-Hughes leslie_alistair@hotmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/ntdll/tape.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/ntdll/tape.c b/dlls/ntdll/tape.c index 09803d4..9050584 100644 --- a/dlls/ntdll/tape.c +++ b/dlls/ntdll/tape.c @@ -405,9 +405,9 @@ static NTSTATUS TAPE_SetPosition( int fd, const TAPE_SET_POSITION *data ) #ifdef HAVE_SYS_MTIO_H struct mtop cmd;
- TRACE( "fd: %d method: 0x%08x partition: 0x%08x offset: 0x%x%08x immediate: 0x%02x\n", - fd, data->Method, data->Partition, (DWORD)(data->Offset.QuadPart >> 32), - (DWORD)data->Offset.QuadPart, data->Immediate ); + TRACE( "fd: %d method: 0x%08x partition: 0x%08x offset: 0x%s immediate: 0x%02x\n", + fd, data->Method, data->Partition, wine_dbgstr_longlong(data->Offset.QuadPart), + data->Immediate );
if (sizeof(cmd.mt_count) < sizeof(data->Offset.QuadPart) && (int)data->Offset.QuadPart != data->Offset.QuadPart)