summaryrefslogtreecommitdiff
path: root/lscp.c
diff options
context:
space:
mode:
authorJens Schweikhardt <schweikh@schweikhardt.net>2025-08-31 16:04:57 +0200
committerJens Schweikhardt <schweikh@schweikhardt.net>2025-08-31 16:04:57 +0200
commit275e732d08441e5180ae8ef17da0f684106e60d6 (patch)
tree1e07da3553fcee7295f8645a76ec1103e321b476 /lscp.c
parent1ba7b3a044045ea2aa91dd46acc3a1b4531a8bc1 (diff)
More history. HASH is not a good idea, changes too often.
Diffstat (limited to 'lscp.c')
-rw-r--r--lscp.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/lscp.c b/lscp.c
index efe9d58..d4fdcde 100644
--- a/lscp.c
+++ b/lscp.c
@@ -27,9 +27,6 @@
#include <wchar.h>
#include <errno.h>
-#ifndef HASH
-#define HASH "(undefined)"
-#endif
#ifndef VERSION
#define VERSION "(undefined)"
#endif
@@ -43,7 +40,7 @@ int main(int aArgc, char **aArgv) {
exit(EXIT_FAILURE);
}
if (aArgc != 3) {
- fprintf(stderr, "%s version %s, hash %s\n", aArgv[0], VERSION, HASH);
+ fprintf(stderr, "%s version %s\n", aArgv[0], VERSION);
fprintf(stderr, "usage: %s start end\n", aArgv[0]);
exit(EXIT_FAILURE);
}