summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--xkbdlock.c (renamed from xlockkbd.c)4
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 066d2ac..8278faf 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
CFLAGS += -O2 -Wall -Wextra -Wpedantic
LDFLAGS += -lX11
-TARGET := xlockkbd
+TARGET := xkbdlock
SRC := $(wildcard *.c)
OBJ := $(SRC:.c=.o)
diff --git a/xlockkbd.c b/xkbdlock.c
index 2e970c5..0cdaedf 100644
--- a/xlockkbd.c
+++ b/xkbdlock.c
@@ -44,9 +44,9 @@ static void die(const char *fmt, ...)
char *s;
if (vasprintf(&s, fmt, ap) != -1)
- fprintf(stderr, "xlockkbd: %s\n", s);
+ fprintf(stderr, "xkbdlock: %s\n", s);
else
- fprintf(stderr, "xlockkbd: unknown error\n");
+ fprintf(stderr, "xkbdlock: unknown error\n");
va_end(ap);
exit(1);