From 3e25c2ea466d0525fd41d5f3a2fb2fb13ab48a39 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Fri, 29 Dec 2017 12:59:11 -0600 Subject: [PATCH] fix more printf specs --- testApp/pv/testPVType.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testApp/pv/testPVType.cpp b/testApp/pv/testPVType.cpp index aea607c..cfd5040 100644 --- a/testApp/pv/testPVType.cpp +++ b/testApp/pv/testPVType.cpp @@ -56,10 +56,10 @@ MAIN(testPVType) int64 longInt = 0x7fffffff; longInt <<= 32; longInt |= 0xffffffff; - printf("int8 max %lli",(long long)longInt); + printf("int8 max %lld",(long long)longInt); longInt = intValue = 0x80000000;; longInt <<= 32; - printf(" min %lli\n",(long long)longInt); + printf(" min %lld\n",(long long)longInt); printf("PASSED\n"); return testDone();