oleaut32: Limit the number of arguments traced.

This commit is contained in:
Vincent Povirk 2010-04-06 14:37:57 -05:00 committed by Alexandre Julliard
parent 55a96174c8
commit d9c01dcc40
1 changed files with 2 additions and 1 deletions

View File

@ -5703,7 +5703,8 @@ _invoke(FARPROC func,CALLCONV callconv, int nrargs, DWORD *args) {
if (TRACE_ON(ole)) {
int i;
TRACE("Calling %p(",func);
for (i=0;i<nrargs;i++) TRACE("%08x,",args[i]);
for (i=0;i<min(nrargs,30);i++) TRACE("%08x,",args[i]);
if (nrargs > 30) TRACE("...");
TRACE(")\n");
}