winejoystick.drv: Remove unneeded address-of operator from array name.

This commit is contained in:
Andrew Talbot 2008-07-12 20:37:24 +01:00 committed by Alexandre Julliard
parent 9c6b1fee38
commit 1fd750cf31
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ static const WCHAR ini[] = {'W','i','n','e',' ','J','o','y','s','t','i','c','k',
ioctl(dev, JSIOCGAXES, &nrOfAxes);
ioctl(dev, JSIOCGBUTTONS, &nrOfButtons);
ioctl(dev, JSIOCGVERSION, &driverVersion);
ioctl(dev, JSIOCGNAME(sizeof(identString)), &identString);
ioctl(dev, JSIOCGNAME(sizeof(identString)), identString);
TRACE("Driver: 0x%06x, Name: %s, #Axes: %d, #Buttons: %d\n",
driverVersion, identString, nrOfAxes, nrOfButtons);
lpCaps->wMid = MM_MICROSOFT;