From 6582e0ad499fdc8acb54a008e7fc3ca306512157 Mon Sep 17 00:00:00 2001 From: Manish Singh Date: Wed, 15 Sep 2004 20:25:41 +0000 Subject: [PATCH] use guint16 instead of __u16. Should fix bug #152746. 2004-09-15 Manish Singh * modules/controller_linux_input.c: use guint16 instead of __u16. Should fix bug #152746. --- ChangeLog | 5 +++++ modules/controller_linux_input.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f8ad2b4ec8..3450077eed 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-09-15 Manish Singh + + * modules/controller_linux_input.c: use guint16 instead of __u16. + Should fix bug #152746. + 2004-09-15 Sven Neumann * libgimp/gimpdrawablepreview.[ch] diff --git a/modules/controller_linux_input.c b/modules/controller_linux_input.c index 4a011e08da..8b4b08d3b3 100644 --- a/modules/controller_linux_input.c +++ b/modules/controller_linux_input.c @@ -42,7 +42,7 @@ typedef struct { - __u16 code; + guint16 code; const gchar *name; const gchar *blurb; } LinuxInputEvent;