Fix a warning in JACK_drvLoad().

This commit is contained in:
Francois Gouget 2004-04-26 20:04:21 +00:00 committed by Alexandre Julliard
parent 8ceb200817
commit cce19caacb
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ static DWORD JACK_drvLoad(void)
{
jackhandle = wine_dlopen(SONAME_LIBJACK, RTLD_NOW, NULL, 0);
TRACE("JACK_drvLoad: SONAME_LIBJACK == %s\n", SONAME_LIBJACK);
TRACE("JACK_drvLoad: jackhandle == 0x%x\n", jackhandle);
TRACE("JACK_drvLoad: jackhandle == %p\n", jackhandle);
if(!jackhandle)
{
FIXME("JACK_drvLoad: error loading the jack library %s, please install this library to use jack\n", SONAME_LIBJACK);