"Reece Dunn" <[EMAIL PROTECTED]> writes: > diff --git a/dlls/user32/tests/listbox.c b/dlls/user32/tests/listbox.c > index 3645190..f1a7b2b 100644 > --- a/dlls/user32/tests/listbox.c > +++ b/dlls/user32/tests/listbox.c > @@ -560,6 +560,8 @@ static void test_listbox_LB_DIR() > char * p; > char driveletter; > > + fclose( fopen( "wtest1.tmp.c", "w" ) );
Using stdio is not really appropriate here, CreateFile() would be a better choice. -- Alexandre Julliard [EMAIL PROTECTED]
