summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSam Nelson2015-09-22 17:34:48 -0500
committerSam Nelson2015-09-22 17:34:48 -0500
commit94c03757b149feb6a834356f89f42eb2da604a4d (patch)
tree59b835435c502c5b1b233a34dc100897e5c3f254 /src
parentf77e0e6f168d99486be12efbdc1559f2d76eae94 (diff)
downloadmpm-transport-94c03757b149feb6a834356f89f42eb2da604a4d.tar.gz
mpm-transport-94c03757b149feb6a834356f89f42eb2da604a4d.tar.xz
mpm-transport-94c03757b149feb6a834356f89f42eb2da604a4d.zip
fw_mem: Fix warning in printf
Signed-off-by: Sam Nelson <sam.nelson@ti.com>
Diffstat (limited to 'src')
-rw-r--r--src/utils/fw_mem/fw_mem_allocator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/fw_mem/fw_mem_allocator.c b/src/utils/fw_mem/fw_mem_allocator.c
index 6154cb8..44d3842 100644
--- a/src/utils/fw_mem/fw_mem_allocator.c
+++ b/src/utils/fw_mem/fw_mem_allocator.c
@@ -236,7 +236,7 @@ fw_Bool_t fw_memAllocInit
236 /* Get virtual address from CMEM */ 236 /* Get virtual address from CMEM */
237 if ( ! (map_base = CMEM_registerAlloc (*pAddr))) 237 if ( ! (map_base = CMEM_registerAlloc (*pAddr)))
238 { 238 {
239 printf("fw_memAllocInit: Failed to map from cmem 0x%llx\n", *pAddr); 239 printf("fw_memAllocInit: Failed to map from cmem 0x%llx\n", (unsigned long long)(*pAddr));
240 return fw_FALSE; 240 return fw_FALSE;
241 } 241 }
242 } 242 }