@cryptotaxi247 / netdata-1 / commits / 56513116d

Fix CID 400366 (#15953)

Stelios Fragkakis committed Sep 13, 2023 at 11:06 UTC 56513116d88d5a6e25903c27b7f44cdf9f73e2d8
1 file changed +1 -1
collectors/systemd-journal.plugin/systemd-journal.c
+1 -1
@@ -96,7 +96,7 @@ int systemd_journal_query(BUFFER *wb, FACETS *facets, usec_t after_ut, usec_t be
96 size_t excess_rows_allowed = 100;
97
98 if(sd_journal_seek_realtime_usec(j, before_ut) < 0) {
99 - netdata_log_error("SYSTEMD-JOURNAL: Failed to seek to " PRIu64, before_ut);
99 + netdata_log_error("SYSTEMD-JOURNAL: Failed to seek to %" PRIu64, before_ut);
100 if(sd_journal_seek_tail(j) < 0) {
101 netdata_log_error("SYSTEMD-JOURNAL: Failed to seek to journal's tail");
102 goto finalize;