mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-05-05 18:08:09 +02:00
test: move opening { to next line
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
42fa56c9ee
commit
015151de3a
1 changed files with 6 additions and 3 deletions
|
|
@ -67,11 +67,13 @@ struct suite {
|
||||||
|
|
||||||
static struct litest_device *current_device;
|
static struct litest_device *current_device;
|
||||||
|
|
||||||
struct litest_device *litest_current_device(void) {
|
struct litest_device *litest_current_device(void)
|
||||||
|
{
|
||||||
return current_device;
|
return current_device;
|
||||||
}
|
}
|
||||||
|
|
||||||
void litest_set_current_device(struct litest_device *device) {
|
void litest_set_current_device(struct litest_device *device)
|
||||||
|
{
|
||||||
current_device = device;
|
current_device = device;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -461,7 +463,8 @@ static const struct option opts[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
int
|
int
|
||||||
litest_run(int argc, char **argv) {
|
litest_run(int argc, char **argv)
|
||||||
|
{
|
||||||
struct suite *s, *snext;
|
struct suite *s, *snext;
|
||||||
int failed;
|
int failed;
|
||||||
SRunner *sr = NULL;
|
SRunner *sr = NULL;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue