Austin English : winejoystick.drv: Fix a compiler warning on clang.

Alexandre Julliard julliard at winehq.org
Mon Sep 20 12:12:22 CDT 2010


Module: wine
Branch: master
Commit: 426c9202646dc8fdbdf8208827e7a3b14507c1f1
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=426c9202646dc8fdbdf8208827e7a3b14507c1f1

Author: Austin English <austinenglish at gmail.com>
Date:   Mon Sep 20 03:54:33 2010 -0500

winejoystick.drv: Fix a compiler warning on clang.

---

 dlls/winejoystick.drv/joystick.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/winejoystick.drv/joystick.c b/dlls/winejoystick.drv/joystick.c
index 95d9c32..1f81353 100644
--- a/dlls/winejoystick.drv/joystick.c
+++ b/dlls/winejoystick.drv/joystick.c
@@ -286,7 +286,7 @@ static const WCHAR ini[] = {'W','i','n','e',' ','J','o','y','s','t','i','c','k',
 		/* TODO: JOYCAPS_POVCTS handling */
 		break;
 	    default:
-		WARN("Unknown axis %hhu(%hhu). Skipped.\n", jstck->axesMap[i], i);
+		WARN("Unknown axis %hhu(%u). Skipped.\n", jstck->axesMap[i], i);
 	    }
 	}
     }




More information about the wine-cvs mailing list