mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
[freebsd] Remove the use of basename from log_msg.
Fix
This commit is contained in:
parent
49ae32a986
commit
70847429fa
@ -41,7 +41,6 @@
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#include <signal.h>
|
||||
#include <libgen.h>
|
||||
#include <pthread.h>
|
||||
#include <sys/resource.h>
|
||||
|
||||
@ -274,7 +273,7 @@ void log_msg(lnav_log_level_t level, const char *src_file, int line_number,
|
||||
localtm.tm_sec,
|
||||
(int)(curr_time.tv_usec / 1000),
|
||||
LEVEL_NAMES[to_underlying(level)],
|
||||
basename((char *)src_file),
|
||||
src_file,
|
||||
line_number);
|
||||
rc = vsnprintf(&line[prefix_size], MAX_LOG_LINE_SIZE - prefix_size,
|
||||
fmt, args);
|
||||
|
Loading…
Reference in New Issue
Block a user