Module: wine Branch: master Commit: b1fed4e9f1c038e83a5ba4f2e9283e50f75c6cba URL: http://source.winehq.org/git/wine.git/?a=commit;h=b1fed4e9f1c038e83a5ba4f2e9...
Author: André Hentschel nerv@dawncrow.de Date: Mon Jan 27 22:26:43 2014 +0100
ole32: Use boolean return value in boolean function.
---
dlls/ole32/stg_prop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/ole32/stg_prop.c b/dlls/ole32/stg_prop.c index cd87fbe..8c91a12 100644 --- a/dlls/ole32/stg_prop.c +++ b/dlls/ole32/stg_prop.c @@ -2763,7 +2763,7 @@ BOOLEAN WINAPI StgConvertPropertyToVariant(const SERIALIZEDPROPERTYVALUE* prop, PropVariantInit(pvar); }
- return 0; + return FALSE; }
SERIALIZEDPROPERTYVALUE* WINAPI StgConvertVariantToProperty(const PROPVARIANT *pvar,