mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[DWNL]
- Fix a format specifier. Patch by Víctor Martínez CORE-8113 #resolve svn path=/trunk/; revision=63029
This commit is contained in:
parent
ce150eca7b
commit
f07603fa39
1 changed files with 1 additions and 1 deletions
|
@ -225,7 +225,7 @@ CBindStatusCallback_OnProgress(IBindStatusCallback *iface,
|
||||||
if (This->szMimeType[0] != _T('\0'))
|
if (This->szMimeType[0] != _T('\0'))
|
||||||
_tprintf(_T("Length: %I64u [%s]\n"), This->Size, This->szMimeType);
|
_tprintf(_T("Length: %I64u [%s]\n"), This->Size, This->szMimeType);
|
||||||
else
|
else
|
||||||
_tprintf(_T("Length: %ull\n"), This->Size);
|
_tprintf(_T("Length: %I64u\n"), This->Size);
|
||||||
}
|
}
|
||||||
|
|
||||||
_tprintf(_T("\n"));
|
_tprintf(_T("\n"));
|
||||||
|
|
Loading…
Reference in a new issue