summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/relabsd_device.c')
-rw-r--r--src/relabsd_device.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/relabsd_device.c b/src/relabsd_device.c
index 174f1eb..0ca6993 100644
--- a/src/relabsd_device.c
+++ b/src/relabsd_device.c
@@ -61,7 +61,7 @@ int relabsd_device_create
if (fd < 0)
{
- _FATAL
+ RELABSD_FATAL
(
"Could not open device '%s' in read only mode: %s.",
config->input_file,
@@ -73,7 +73,7 @@ int relabsd_device_create
if (libevdev_new_from_fd(fd, &(dev->dev)) < 0)
{
- _FATAL
+ RELABSD_FATAL
(
"libevdev could not open '%s': '%s'.",
config->input_file,
@@ -103,7 +103,7 @@ int relabsd_device_create
< 0
)
{
- _FATAL("Could not create relabsd device: %s.", strerror(errno));
+ RELABSD_FATAL("Could not create relabsd device: %s.", strerror(errno));
libevdev_free(dev->dev);