From 3f0e633fd150a9bf7919b8b97f766aa71ea31c12 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Fri, 20 Dec 2013 09:59:49 -0600 Subject: [PATCH] dbStatic: Clean up warning on darwin --- src/ioc/dbStatic/dbStaticLib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ioc/dbStatic/dbStaticLib.c b/src/ioc/dbStatic/dbStaticLib.c index 0c2dfe55c..81edea973 100644 --- a/src/ioc/dbStatic/dbStaticLib.c +++ b/src/ioc/dbStatic/dbStaticLib.c @@ -3142,8 +3142,8 @@ void dbDumpField( printf("\t field_type: %d\n", pdbFldDes->field_type); else printf("\t field_type: %s\n", pamapdbfType[j].strvalue); - printf("\tprocess_passive: %hd\n",pdbFldDes->process_passive); - printf("\t property: %hd\n",pdbFldDes->prop); + printf("\tprocess_passive: %u\n",pdbFldDes->process_passive); + printf("\t property: %u\n",pdbFldDes->prop); printf("\t base: %d\n",pdbFldDes->base); if(!pdbFldDes->promptgroup) { printf("\t promptgroup: %d\n",pdbFldDes->promptgroup);