Module: wine Branch: master Commit: a624fb044c3d4184751add8082c7ef6c5998a53c URL: http://source.winehq.org/git/wine.git/?a=commit;h=a624fb044c3d4184751add8082...
Author: Michael Stefaniuc mstefani@redhat.com Date: Wed Sep 26 18:57:38 2007 +0200
crypt32: Add missing parameter to a TRACE.
---
dlls/crypt32/object.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/crypt32/object.c b/dlls/crypt32/object.c index e12ace3..5dc6341 100644 --- a/dlls/crypt32/object.c +++ b/dlls/crypt32/object.c @@ -466,6 +466,6 @@ BOOL WINAPI CryptQueryObject(DWORD dwObjectType, const void *pvObject, dwExpectedContentTypeFlags, pdwMsgAndCertEncodingType, pdwContentType, phCertStore, phMsg); } - TRACE("returning %d\n"); + TRACE("returning %d\n", ret); return ret; }