apple_input: Fix a signed-unsigned mismatch warning
This commit is contained in:
parent
5b476460d8
commit
32a191b873
|
@ -14,7 +14,7 @@
|
|||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
|
||||
#include <stdint.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "input_common.h"
|
||||
|
@ -498,7 +498,7 @@ static void *apple_input_init(void)
|
|||
|
||||
static void apple_input_poll(void *data)
|
||||
{
|
||||
int i;
|
||||
uint32_t i;
|
||||
(void)data;
|
||||
|
||||
#ifdef IOS
|
||||
|
|
Loading…
Reference in New Issue