Commit 08bd6db4 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

cabarc: Enable compilation with long types.

parent 418c4ad7
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = cabarc.exe
IMPORTS = cabinet
......
......@@ -299,7 +299,7 @@ static void create_directories( const WCHAR *name )
{
*p = 0;
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 = wcschr(p+1, '\\');
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment