[cd]webp: always output windows errors

don't hide failures with -v.

Change-Id: I1578dbb7be67f041f0984bf6696c0c895c1600d9
This commit is contained in:
James Zern 2012-10-08 18:33:18 -07:00
parent d662158010
commit 4a8fb27223
2 changed files with 12 additions and 16 deletions

View File

@ -97,11 +97,9 @@ static int ReadYUV(FILE* in_file, WebPPicture* const pic) {
#define IFS(fn) \ #define IFS(fn) \
do { \ do { \
if (SUCCEEDED(hr)) \ if (SUCCEEDED(hr)) { \
{ \
hr = (fn); \ hr = (fn); \
if (FAILED(hr) && verbose) \ if (FAILED(hr)) fprintf(stderr, #fn " failed %08x\n", hr); \
fprintf(stderr, #fn " failed %08x\n", hr); \
} \ } \
} while (0) } while (0)

View File

@ -69,11 +69,9 @@ typedef enum {
#define IFS(fn) \ #define IFS(fn) \
do { \ do { \
if (SUCCEEDED(hr)) \ if (SUCCEEDED(hr)) { \
{ \
hr = (fn); \ hr = (fn); \
if (FAILED(hr) && verbose) \ if (FAILED(hr)) fprintf(stderr, #fn " failed %08x\n", hr); \
fprintf(stderr, #fn " failed %08x\n", hr); \
} \ } \
} while (0) } while (0)