From cdde7b40817c9367d2cd0a7b733ed132502bcf8a Mon Sep 17 00:00:00 2001 From: Sergey Guralnik Date: Mon, 22 Apr 2013 10:51:02 +0300 Subject: [PATCH 2/2] extrac32: Info about extracted data should be directed to stdout. --- programs/extrac32/extrac32.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/programs/extrac32/extrac32.c b/programs/extrac32/extrac32.c index 70f11bf..78b5891 100644 --- a/programs/extrac32/extrac32.c +++ b/programs/extrac32/extrac32.c @@ -90,7 +90,7 @@ static UINT WINAPI ExtCabCallback(PVOID Context, UINT Notification, UINT_PTR Par } case SPFILENOTIFY_FILEEXTRACTED: pFilePaths = (FILEPATHS_W*)Param1; - WINE_TRACE("Extracted %s\n", wine_dbgstr_w(pFilePaths->Target)); + extr_printf("Extracted %S\n", pFilePaths->Target); return NO_ERROR; } return NO_ERROR; -- 1.7.0.4