From 9a8ae72e94d92dc147bafae027d06e22645606a9 Mon Sep 17 00:00:00 2001 From: ame Date: Thu, 7 Nov 2024 01:49:09 -0600 Subject: dumb fix --- src/util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/util.c b/src/util.c index 121a583..5612638 100644 --- a/src/util.c +++ b/src/util.c @@ -59,8 +59,8 @@ char* strnstr(const char *s1, const char *s2, size_t n) { void _p_fatal(const char* m, int line, const char* file, const char* function){ fprintf(stderr, "%s[fatal] %s \n" - "\tthread: %zu/%zu\n" - "\tat: %s:%s(%i) %s\n",color_red, m, pthread_self(), threads, file, function, line, color_reset); + "\tthread: %zu\n" + "\tat: %s:%s(%i) %s\n",color_red, m, pthread_self(), file, function, line, color_reset); exit(EXIT_FAILURE); } -- cgit v1.2.3