diff --git a/src/xspice/evt/evtload.c b/src/xspice/evt/evtload.c index cd570805c..3376e5cd5 100644 --- a/src/xspice/evt/evtload.c +++ b/src/xspice/evt/evtload.c @@ -563,8 +563,8 @@ static void EVTprocess_output( if (g_mif_info.circuit.anal_type == MIF_TRAN) { delay = port->delay; - if(delay <= 0.0) { - printf("\nERROR - Output delay <= 0 not allowed - output ignored!\n"); + if(delay < 0.0) { + printf("\nERROR - Output delay < 0 not allowed - output ignored!\n"); printf(" Instance: %s\n Node: %s\n Time: %f \n", g_mif_info.instance->MIFname, node_table[node_index]->name, g_mif_info.ckt->CKTtime);