Hans Leidekker (@hans) commented about dlls/wintrust/crypt.c:
- ALG_ID alg;
- const WCHAR *providerName;
- DWORD providerType;
- TRACE("%p %s %lx\n", catAdmin, debugstr_guid(sys), dwFlags);
TRACE("%p %s %s %p %lx\n", catAdmin, debugstr_guid(sys), debugstr_w(algorithm), policy, dwFlags);
if (!catAdmin || dwFlags) { SetLastError(ERROR_INVALID_PARAMETER); return FALSE; }
if (policy != NULL) {
FIXME("strong policy parameter is unimplemented\n");
}
Please put opening braces on a new line like in the rest of the file. Here you can omit the braces.