summaryrefslogtreecommitdiff
path: root/src/gwacom/wacom-device.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gwacom/wacom-device.c')
-rw-r--r--src/gwacom/wacom-device.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gwacom/wacom-device.c b/src/gwacom/wacom-device.c
index 29315a5..29fb9ae 100644
--- a/src/gwacom/wacom-device.c
+++ b/src/gwacom/wacom-device.c
@@ -709,7 +709,7 @@ static gboolean hotplugDevice(gpointer data)
return FALSE;
}
-void wcmQueueHotplug(WacomDevicePtr priv, const char* name, const char *type, int serial)
+void wcmQueueHotplug(WacomDevicePtr priv, const char* name, const char *type, unsigned int serial)
{
WacomDevice *device = priv->frontend;
struct hotplug *hotplug = g_new0(struct hotplug, 1);
@@ -717,7 +717,7 @@ void wcmQueueHotplug(WacomDevicePtr priv, const char* name, const char *type, in
char buf[64] = {0};
wacom_options_set(new_opts, "Type", type);
- if (serial > -1) {
+ if (serial != UINT_MAX) {
snprintf(buf, sizeof(buf), "0x%x", serial);
wacom_options_set(new_opts, "Serial", buf);
}