diff options
author | Zied Aouini <aouinizied@gmail.com> | 2022-04-15 13:22:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-15 13:22:25 +0200 |
commit | fba75a3cf5e06d2c9b8c7b1823cafd6e8ca636bc (patch) | |
tree | 13355914f93b668afb47f2b5b643dffc073fb8e7 /src/lib/ndpi_classify.c | |
parent | 4775be3d85434d4e385f43a47b783844bbfb2571 (diff) | |
parent | c3df3a12aa88739e303340ccd7436d467b4662d2 (diff) |
Merge pull request #1491 from utoni/fix/windows-msys2
Fixed msys2 build and re-activated CI Mingw-w64 build.
Diffstat (limited to 'src/lib/ndpi_classify.c')
-rw-r--r-- | src/lib/ndpi_classify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ndpi_classify.c b/src/lib/ndpi_classify.c index bea56afef..61756cc16 100644 --- a/src/lib/ndpi_classify.c +++ b/src/lib/ndpi_classify.c @@ -696,5 +696,5 @@ ndpi_log_timestamp(char *log_ts, uint32_t log_ts_len) localtime_r(&nowtime, &nowtm_r); #endif strftime(tmbuf, NDPI_TIMESTAMP_LEN, "%H:%M:%S", &nowtm_r); - snprintf(log_ts, log_ts_len, "%s.%06ld", tmbuf, (long)tv.tv_usec); + ndpi_snprintf(log_ts, log_ts_len, "%s.%06ld", tmbuf, (long)tv.tv_usec); } |