From e698db73459b3446f71546b8a0993e652cea5b29 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 6 Jun 2000 00:15:20 +0000 Subject: [PATCH] fixed printf format miss-match --- src/ca/catime.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ca/catime.c b/src/ca/catime.c index b49629cc0..8bdae96bb 100644 --- a/src/ca/catime.c +++ b/src/ca/catime.c @@ -131,10 +131,10 @@ int catime (char *channelName, enum appendNumberFlag appNF) printSearchStat(NELEMENTS(itemList)); printf ( - "channel name=%s, native type=%d, native count=%d\n", - ca_name(itemList[0].chix), - ca_field_type(itemList[0].chix), - ca_element_count(itemList[0].chix)); + "channel name=%s, native type=%d, native count=%lu\n", + ca_name (itemList[0].chix), + ca_field_type (itemList[0].chix), + ca_element_count (itemList[0].chix)); printf ("\tpend event test\n"); timeIt (test_pend, NULL, 100, 0);