From f5c2806ca19bfcfe1c7d3002714b4df829a9d650 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Thu, 24 May 2007 11:10:44 -0700 Subject: [PATCH] msi: Remove a misleading ERR, as this fails if a file doesn't exist, which is common. --- dlls/msi/format.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/dlls/msi/format.c b/dlls/msi/format.c index 2ea6e233805..fa85e602d5d 100644 --- a/dlls/msi/format.c +++ b/dlls/msi/format.c @@ -162,8 +162,6 @@ static LPWSTR deformat_file(MSIPACKAGE* package, LPCWSTR key, DWORD* sz, } else { - ERR("Unable to get ShortPath size (%s)\n", - debugstr_w( file->TargetPath) ); value = strdupW( file->TargetPath ); *sz = (lstrlenW(value)) * sizeof(WCHAR); }