From cddcd36e17bba29f4c182b3c60e37a891db2336f Mon Sep 17 00:00:00 2001 From: Markus Volk Date: Fri, 24 Jan 2020 22:04:09 +0100 Subject: [PATCH] cc_timer.cpp: fix -Wformat warning Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/a08ba54305207d31a8c6742de1f008049723e1dd Author: Markus Volk Date: 2020-01-24 (Fri, 24 Jan 2020) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/components/cc_timer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/components/cc_timer.cpp b/src/gui/components/cc_timer.cpp index 53313705c..b9cc6a63c 100644 --- a/src/gui/components/cc_timer.cpp +++ b/src/gui/components/cc_timer.cpp @@ -127,7 +127,7 @@ void CComponentsTimer::stopThread() delete tm_thread; tm_thread = NULL; tn.clear(); - dprintf(DEBUG_DEBUG,"\033[32m[CComponentsTimer] thread [%p] [%s] [%s - %d] thread object terminated after %lu ticks\033[0m\n", tm_thread, tn.c_str(), __func__, __LINE__, tm_ticks); + dprintf(DEBUG_DEBUG,"\033[32m[CComponentsTimer] thread [%p] [%s] [%s - %d] thread object terminated after %llu ticks\033[0m\n", tm_thread, tn.c_str(), __func__, __LINE__, tm_ticks); } }