Commit cce19caa authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Fix a warning in JACK_drvLoad().

parent 8ceb2008
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment