evdev: constify evdev_device_get_size

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
This commit is contained in:
Peter Hutterer 2016-07-15 11:13:06 +10:00
parent 8e7f99c27a
commit d9c2535721
2 changed files with 2 additions and 2 deletions

View file

@ -2671,7 +2671,7 @@ evdev_device_has_capability(struct evdev_device *device,
}
int
evdev_device_get_size(struct evdev_device *device,
evdev_device_get_size(const struct evdev_device *device,
double *width,
double *height)
{

View file

@ -371,7 +371,7 @@ evdev_device_has_capability(struct evdev_device *device,
enum libinput_device_capability capability);
int
evdev_device_get_size(struct evdev_device *device,
evdev_device_get_size(const struct evdev_device *device,
double *w,
double *h);