msi: Use boolean return value in boolean function

André Hentschel nerv at dawncrow.de
Wed Jan 29 15:28:29 CST 2014


---
 dlls/msi/record.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/msi/record.c b/dlls/msi/record.c
index 3c1cf00..88d94a9 100644
--- a/dlls/msi/record.c
+++ b/dlls/msi/record.c
@@ -378,7 +378,7 @@ BOOL WINAPI MsiRecordIsNull( MSIHANDLE handle, UINT iField )
 
     rec = msihandle2msiinfo( handle, MSIHANDLETYPE_RECORD );
     if( !rec )
-        return 0;
+        return FALSE;
     msiobj_lock( &rec->hdr );
     ret = MSI_RecordIsNull( rec, iField );
     msiobj_unlock( &rec->hdr );
-- 
1.8.1.2





More information about the wine-patches mailing list