From afbd5893486130f7b454dc313e36bce18922d953 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20Cicho=C5=84?= <michcic@gmail.com>
Date: Wed, 12 Jul 2017 23:24:08 +0200
Subject: [PATCH] Fix function signature in null joystick backend

Related to #1043.
---
 src/null_joystick.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/null_joystick.c b/src/null_joystick.c
index 2311d91f..afd65e15 100644
--- a/src/null_joystick.c
+++ b/src/null_joystick.c
@@ -31,7 +31,7 @@
 //////                       GLFW platform API                      //////
 //////////////////////////////////////////////////////////////////////////
 
-int _glfwPlatformPollJoystick(int jid, int mode)
+int _glfwPlatformPollJoystick(_GLFWjoystick* js, int mode)
 {
     return GLFW_FALSE;
 }