mirror of
https://github.com/brl/mutter.git
synced 2024-11-10 07:56:14 -05:00
Fix string format build error
backends/meta-input-settings.c:1245:27: error: format '%lx' expects argument of type 'long unsigned int', but argument 3 has type 'guint64 {aka long long unsigned int}' [-Werror=format=]
This commit is contained in:
parent
a65c344743
commit
028157081c
@ -1242,7 +1242,7 @@ lookup_tool_settings (ClutterInputDeviceTool *tool,
|
||||
|
||||
tool_id = clutter_input_device_tool_get_id (tool);
|
||||
device_id = get_tablet_settings_id (device, lookup_mapping_info (device));
|
||||
path = g_strdup_printf ("/org/gnome/settings-daemon/peripherals/wacom/%s/%lx/",
|
||||
path = g_strdup_printf ("/org/gnome/settings-daemon/peripherals/wacom/%s/%" G_GUINT64_FORMAT "/",
|
||||
device_id, tool_id);
|
||||
tool_settings = tool_settings_new (tool, path);
|
||||
g_object_set_qdata_full (G_OBJECT (tool), quark_tool_settings, tool_settings,
|
||||
|
Loading…
Reference in New Issue
Block a user