Added line wrapping for a FIXME.

This commit is contained in:
Stefan Leichter 2003-06-27 19:40:56 +00:00 committed by Alexandre Julliard
parent 1ce760568c
commit eec7e0c734
1 changed files with 1 additions and 1 deletions

View File

@ -1316,7 +1316,7 @@ UINT WINAPI GetPrivateProfileIntW( LPCWSTR section, LPCWSTR entry,
filename )))
return def_val;
if (len+1 == sizeof(buffer)/sizeof(WCHAR)) FIXME("result may be wrong!");
if (len+1 == sizeof(buffer)/sizeof(WCHAR)) FIXME("result may be wrong!\n");
/* FIXME: if entry can be found but it's empty, then Win16 is
* supposed to return 0 instead of def_val ! Difficult/problematic