fix some compiler warnings

Origin commit data
------------------
Branch: ni/coolstream
Commit: 3e08a30a12
Author: vanhofen <vanhofen@gmx.de>
Date: 2020-01-06 (Mon, 06 Jan 2020)

Origin message was:
------------------
- fix some compiler warnings

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2020-01-06 23:13:24 +01:00
parent 0a407dae5c
commit e17fcd2602
2 changed files with 2 additions and 2 deletions

View File

@@ -329,7 +329,7 @@ bool CComponentsFrmClock::startClock()
{ {
if (stopClock()){ if (stopClock()){
if (cl_interval <= 0){ if (cl_interval <= 0){
dprintf(DEBUG_NORMAL, "[CComponentsFrmClock] [%s] clock is set to active, but interval is initialized with value %lu ...\n", __func__, cl_interval); dprintf(DEBUG_NORMAL, "[CComponentsFrmClock] [%s] clock is set to active, but interval is initialized with value %" PRIx64 " ...\n", __func__, cl_interval);
return false; return false;
} }

View File

@@ -3005,7 +3005,7 @@ void CMovieBrowser::loadAllTsFileNamesFromStorage(void)
} }
} }
TRACE("[mb] Dir %d, Files: %d, size %lu, used_dirs %lu\n", (int)m_dirNames.size(), (int)m_vMovieInfo.size(), size, used_dirs); TRACE("[mb] Dir %d, Files: %d, size %u, used_dirs %u\n", (int)m_dirNames.size(), (int)m_vMovieInfo.size(), size, used_dirs);
} }
bool CMovieBrowser::gotMovie(const char *rec_title) bool CMovieBrowser::gotMovie(const char *rec_title)