Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libinput
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
63
Issues
63
List
Boards
Labels
Milestones
Merge Requests
11
Merge Requests
11
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
libinput
libinput
Commits
5c03500d
Commit
5c03500d
authored
Jul 22, 2016
by
Peter Hutterer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test: make the interfaces static
Signed-off-by:
Peter Hutterer
<
peter.hutterer@who-t.net
>
parent
f787e869
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
test/log.c
test/log.c
+1
-1
test/misc.c
test/misc.c
+1
-1
test/path.c
test/path.c
+1
-1
test/udev.c
test/udev.c
+1
-1
No files found.
test/log.c
View file @
5c03500d
...
@@ -45,7 +45,7 @@ static void close_restricted(int fd, void *data)
...
@@ -45,7 +45,7 @@ static void close_restricted(int fd, void *data)
close
(
fd
);
close
(
fd
);
}
}
const
struct
libinput_interface
simple_interface
=
{
static
const
struct
libinput_interface
simple_interface
=
{
.
open_restricted
=
open_restricted
,
.
open_restricted
=
open_restricted
,
.
close_restricted
=
close_restricted
,
.
close_restricted
=
close_restricted
,
};
};
...
...
test/misc.c
View file @
5c03500d
...
@@ -43,7 +43,7 @@ static void close_restricted(int fd, void *data)
...
@@ -43,7 +43,7 @@ static void close_restricted(int fd, void *data)
close
(
fd
);
close
(
fd
);
}
}
const
struct
libinput_interface
simple_interface
=
{
static
const
struct
libinput_interface
simple_interface
=
{
.
open_restricted
=
open_restricted
,
.
open_restricted
=
open_restricted
,
.
close_restricted
=
close_restricted
,
.
close_restricted
=
close_restricted
,
};
};
...
...
test/path.c
View file @
5c03500d
...
@@ -49,7 +49,7 @@ static void close_restricted(int fd, void *data)
...
@@ -49,7 +49,7 @@ static void close_restricted(int fd, void *data)
close
(
fd
);
close
(
fd
);
}
}
const
struct
libinput_interface
simple_interface
=
{
static
const
struct
libinput_interface
simple_interface
=
{
.
open_restricted
=
open_restricted
,
.
open_restricted
=
open_restricted
,
.
close_restricted
=
close_restricted
,
.
close_restricted
=
close_restricted
,
};
};
...
...
test/udev.c
View file @
5c03500d
...
@@ -44,7 +44,7 @@ static void close_restricted(int fd, void *data)
...
@@ -44,7 +44,7 @@ static void close_restricted(int fd, void *data)
close
(
fd
);
close
(
fd
);
}
}
const
struct
libinput_interface
simple_interface
=
{
static
const
struct
libinput_interface
simple_interface
=
{
.
open_restricted
=
open_restricted
,
.
open_restricted
=
open_restricted
,
.
close_restricted
=
close_restricted
,
.
close_restricted
=
close_restricted
,
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment