Fix some space errors.

This commit is contained in:
Cary R 2010-04-12 09:59:45 -07:00 committed by Stephen Williams
parent f2d5acabd5
commit 4c87d89370
1 changed files with 3 additions and 3 deletions

View File

@ -173,10 +173,10 @@ void vpi_get_systf_info(vpiHandle ref, p_vpi_systf_data data)
struct __vpiUserSystf* rfp; struct __vpiUserSystf* rfp;
if (ref->vpi_type->type_code == vpiUserSystf) { if (ref->vpi_type->type_code == vpiUserSystf) {
rfp = (struct __vpiUserSystf*)ref; rfp = (struct __vpiUserSystf*)ref;
} else { } else {
struct __vpiSysTaskCall*call = (struct __vpiSysTaskCall*)ref; struct __vpiSysTaskCall*call = (struct __vpiSysTaskCall*)ref;
rfp = call->defn; rfp = call->defn;
} }
/* Assert that vpiUserDefn is true! */ /* Assert that vpiUserDefn is true! */
assert(rfp->is_user_defn); assert(rfp->is_user_defn);