Re: Simplify code in dlls/imm32/tests/imm32.c

2009-06-20 Thread Paul Vriens
Gerald Pfeifer wrote: Not sure how to else handle this; possibly remove this whole subtest? Gerald ChangeLog: Simplify code in dlls/imm32/tests/imm32.c (and avoid false warning). diff --git a/dlls/imm32/tests/imm32.c b/dlls/imm32/tests/imm32.c index 1951242..3e35ac1 100644 --- a/dlls/imm32

Simplify code in dlls/imm32/tests/imm32.c

2009-06-20 Thread Joris Huizer
Hello Gerald Pfeifer, You did, /* behavior differs between win9x and NT */ ret = ImmGetCompositionString(imc, GCS_COMPSTR, resstr, sizeof(resstr)); -ok(ret || !ret, You'll never read this.\n); +ok(TRUE, You'll never read this.\n); Wouldn't it be better to do something like: