aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/atmel_softpack_libraries/libchip_sam3s/source/flashd.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2019-12-14 11:39:14 +0100
committerHarald Welte <laforge@osmocom.org>2019-12-14 11:47:06 +0100
commit3c003cc2faf56da9095f24e4f9478f73a627e2f5 (patch)
tree2a33a2c0fe4772d8081c702e7c7a96054582cc71 /firmware/atmel_softpack_libraries/libchip_sam3s/source/flashd.c
parent37055b928650f6c09902e1677af79fca1ab1807f (diff)
Fix format string related warnings (int vs. long)
Diffstat (limited to 'firmware/atmel_softpack_libraries/libchip_sam3s/source/flashd.c')
-rw-r--r--firmware/atmel_softpack_libraries/libchip_sam3s/source/flashd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/atmel_softpack_libraries/libchip_sam3s/source/flashd.c b/firmware/atmel_softpack_libraries/libchip_sam3s/source/flashd.c
index 677ea30..c661b3f 100644
--- a/firmware/atmel_softpack_libraries/libchip_sam3s/source/flashd.c
+++ b/firmware/atmel_softpack_libraries/libchip_sam3s/source/flashd.c
@@ -134,7 +134,7 @@ static void ComputeLockRange( uint32_t dwStart, uint32_t dwEnd, uint32_t *pdwAct
// Store actual page numbers
EFC_ComputeAddress( pStartEfc, wActualStartPage, 0, pdwActualStart ) ;
EFC_ComputeAddress( pEndEfc, wActualEndPage, 0, pdwActualEnd ) ;
- TRACE_DEBUG( "Actual lock range is 0x%06X - 0x%06X\n\r", *pdwActualStart, *pdwActualEnd ) ;
+ TRACE_DEBUG( "Actual lock range is 0x%06lX - 0x%06lX\n\r", *pdwActualStart, *pdwActualEnd ) ;
}