From 8ccea0a9344fd9f6b3a88fb923c9a79887196138 Mon Sep 17 00:00:00 2001 From: Jacek Jendrzej Date: Sun, 27 Dec 2015 13:58:32 +0100 Subject: [PATCH] fix compil fix change 64 to 32 Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/322b58a598e9183bbe842f63dabec99c129d8848 Author: Jacek Jendrzej Date: 2015-12-27 (Sun, 27 Dec 2015) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/components/cc_frm.cpp | 2 +- src/system/helpers.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/components/cc_frm.cpp b/src/gui/components/cc_frm.cpp index 3b4e6c3fe..69fa66b3c 100644 --- a/src/gui/components/cc_frm.cpp +++ b/src/gui/components/cc_frm.cpp @@ -251,7 +251,7 @@ int CComponentsForm::genIndex() CComponentsItem* CComponentsForm::getCCItem(const uint& cc_item_id) { if (cc_item_id >= size()){ - dprintf(DEBUG_NORMAL, "[CComponentsForm] [%s - %d] Error: parameter cc_item_id = %u, out of range (size = %" PRIx64")...\n", __func__, __LINE__, cc_item_id, size()); + dprintf(DEBUG_NORMAL, "[CComponentsForm] [%s - %d] Error: parameter cc_item_id = %u, out of range (size = %" PRIx32")...\n", __func__, __LINE__, cc_item_id, size()); return NULL; } diff --git a/src/system/helpers.cpp b/src/system/helpers.cpp index 8ff3fbd4a..bae705934 100644 --- a/src/system/helpers.cpp +++ b/src/system/helpers.cpp @@ -283,7 +283,7 @@ int check_dir(const char * dir, bool allow_tmp) ret = 0; // ok } if(ret == -1) - printf("Wrong Filessystem Type: 0x%" PRIx64"\n",s.f_type); + printf("Wrong Filessystem Type: 0x%" PRIx32"\n",s.f_type); } return ret; }