cabarc: Enable compilation with long types.
Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
418c4ad7b5
commit
08bd6db4aa
|
@ -1,4 +1,3 @@
|
||||||
EXTRADEFS = -DWINE_NO_LONG_TYPES
|
|
||||||
MODULE = cabarc.exe
|
MODULE = cabarc.exe
|
||||||
IMPORTS = cabinet
|
IMPORTS = cabinet
|
||||||
|
|
||||||
|
|
|
@ -299,7 +299,7 @@ static void create_directories( const WCHAR *name )
|
||||||
{
|
{
|
||||||
*p = 0;
|
*p = 0;
|
||||||
if (!CreateDirectoryW( path, NULL ))
|
if (!CreateDirectoryW( path, NULL ))
|
||||||
WINE_TRACE("Couldn't create directory %s - error: %d\n", wine_dbgstr_w(path), GetLastError());
|
WINE_TRACE("Couldn't create directory %s - error: %ld\n", wine_dbgstr_w(path), GetLastError());
|
||||||
*p = '\\';
|
*p = '\\';
|
||||||
p = wcschr(p+1, '\\');
|
p = wcschr(p+1, '\\');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue