Fix fprintf display type

This commit is contained in:
Cary R 2021-06-17 22:44:48 -07:00
parent bb2c51a174
commit 31e3155426
1 changed files with 2 additions and 2 deletions

View File

@ -497,7 +497,7 @@ int vpip_time_units_from_handle(vpiHandle obj)
default: default:
fprintf(stderr, "ERROR: vpip_time_units_from_handle called with " fprintf(stderr, "ERROR: vpip_time_units_from_handle called with "
"object handle type=%u\n", obj->get_type_code()); "object handle type=%d\n", obj->get_type_code());
assert(0); assert(0);
return 0; return 0;
} }
@ -529,7 +529,7 @@ int vpip_time_precision_from_handle(vpiHandle obj)
default: default:
fprintf(stderr, "ERROR: vpip_time_precision_from_handle called " fprintf(stderr, "ERROR: vpip_time_precision_from_handle called "
"with object handle type=%u\n", obj->get_type_code()); "with object handle type=%d\n", obj->get_type_code());
assert(0); assert(0);
return 0; return 0;
} }