diff options
| author | ame <[email protected]> | 2024-11-07 01:49:09 -0600 |
|---|---|---|
| committer | ame <[email protected]> | 2024-11-07 01:49:09 -0600 |
| commit | 9a8ae72e94d92dc147bafae027d06e22645606a9 (patch) | |
| tree | 9bb1939154cb0fa54fe19feffcc8c3b413efbd4c /src/util.c | |
| parent | dd6c0b6b3333f287dcd0886f8a0551f283948505 (diff) | |
dumb fix
Diffstat (limited to 'src/util.c')
| -rw-r--r-- | src/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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);
}
|
