summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/log.c2
-rw-r--r--test/misc.c2
-rw-r--r--test/path.c2
-rw-r--r--test/udev.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/test/log.c b/test/log.c
index b9dfffc..908af7e 100644
--- a/test/log.c
+++ b/test/log.c
@@ -45,7 +45,7 @@ static void close_restricted(int fd, void *data)
close(fd);
}
-const struct libinput_interface simple_interface = {
+static const struct libinput_interface simple_interface = {
.open_restricted = open_restricted,
.close_restricted = close_restricted,
};
diff --git a/test/misc.c b/test/misc.c
index ade053f..dec4ee4 100644
--- a/test/misc.c
+++ b/test/misc.c
@@ -43,7 +43,7 @@ static void close_restricted(int fd, void *data)
close(fd);
}
-const struct libinput_interface simple_interface = {
+static const struct libinput_interface simple_interface = {
.open_restricted = open_restricted,
.close_restricted = close_restricted,
};
diff --git a/test/path.c b/test/path.c
index 729ad86..21b5fa0 100644
--- a/test/path.c
+++ b/test/path.c
@@ -49,7 +49,7 @@ static void close_restricted(int fd, void *data)
close(fd);
}
-const struct libinput_interface simple_interface = {
+static const struct libinput_interface simple_interface = {
.open_restricted = open_restricted,
.close_restricted = close_restricted,
};
diff --git a/test/udev.c b/test/udev.c
index 9296e94..7c294c5 100644
--- a/test/udev.c
+++ b/test/udev.c
@@ -44,7 +44,7 @@ static void close_restricted(int fd, void *data)
close(fd);
}
-const struct libinput_interface simple_interface = {
+static const struct libinput_interface simple_interface = {
.open_restricted = open_restricted,
.close_restricted = close_restricted,
};