localspl: Avoid sizeof in a trace.

This commit is contained in:
Alexandre Julliard 2008-02-07 14:55:02 +01:00
parent 2a56d15997
commit d03f5f22e9
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ static const PRINTPROVIDOR * get_backend(void)
NULL, /* fpSendRecvBidiData */
NULL /* fpAddDriverCatalog */
};
TRACE("=> %p (%u byte for %u entries)\n", &backend, sizeof(backend), sizeof(backend) / sizeof(VOID *));
TRACE("=> %p\n", &backend);
return &backend;
}