test: constify the input_absinfo argument

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2013-07-05 09:02:46 +10:00
parent 53abcb64d5
commit 4ac78fd6df
2 changed files with 2 additions and 2 deletions

View file

@ -59,7 +59,7 @@ int test_create_device(struct uinput_device **uidev_return,
int test_create_abs_device(struct uinput_device **uidev_return,
struct libevdev **dev_return,
int nabs,
struct input_absinfo *abs,
const struct input_absinfo *abs,
...)
{
int rc, fd;

View file

@ -37,7 +37,7 @@ int test_create_device(struct uinput_device **uidev,
int test_create_abs_device(struct uinput_device **uidev,
struct libevdev **dev,
int nabs,
struct input_absinfo *abs,
const struct input_absinfo *abs,
...);
#endif /* _TEST_COMMON_H_ */