From d462fea5fbb727d78b752507f417f1d1a965d90b Mon Sep 17 00:00:00 2001 From: Marty Kraimer Date: Mon, 16 Mar 1998 17:07:54 +0000 Subject: [PATCH] Get rid of error messages --- src/util/ca_test.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/util/ca_test.c b/src/util/ca_test.c index bb0dd3f52..81d29824a 100644 --- a/src/util/ca_test.c +++ b/src/util/ca_test.c @@ -465,7 +465,7 @@ LOCAL void print_returned(chtype type, const void *pbuffer, unsigned count) dbr_long_t *pvalue = (dbr_long_t *)pbuffer; for (i = 0; i < count; i++,pvalue++){ if(count!=1 && (i%10 == 0)) printf("\n"); - printf("%ld ",*pvalue); + printf("%d ",*pvalue); } break; } @@ -550,7 +550,7 @@ LOCAL void print_returned(chtype type, const void *pbuffer, unsigned count) if(count==1) printf("\tValue: "); for (i = 0; i < count; i++,plong++){ if(count!=1 && (i%10 == 0)) printf("\n"); - printf("%ld ",*plong); + printf("%d ",*plong); } break; } @@ -657,7 +657,7 @@ LOCAL void print_returned(chtype type, const void *pbuffer, unsigned count) if(count==1) printf("\tValue: "); for (i = 0; i < count; i++,plong++){ if(count!=1 && (i%10 == 0)) printf("\n"); - printf("%ld ",*plong); + printf("%d ",*plong); } break; } @@ -761,7 +761,7 @@ LOCAL void print_returned(chtype type, const void *pbuffer, unsigned count) if(count==1) printf("\tValue: "); for (i = 0; i < count; i++,plong++){ if(count!=1 && (i%10 == 0)) printf("\n"); - printf("%ld ",*plong); + printf("%d ",*plong); } break; } @@ -864,7 +864,7 @@ LOCAL void print_returned(chtype type, const void *pbuffer, unsigned count) if(count==1) printf("\tValue: "); for (i = 0; i < count; i++,plong++){ if(count!=1 && (i%10 == 0)) printf("\n"); - printf("%ld ",*plong); + printf("%d ",*plong); } break; }