From 7f5145d758ec01f878b459b7a0ab377205d3668c Mon Sep 17 00:00:00 2001 From: Stefan Biereigel Date: Fri, 17 May 2019 15:20:49 +0200 Subject: [PATCH] emit only warning for primitive redefinition --- pform.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pform.cc b/pform.cc index d93d48659..2467044e6 100644 --- a/pform.cc +++ b/pform.cc @@ -1847,7 +1847,7 @@ void pform_make_udp(perm_string name, list*parms, // Put the primitive into the primitives table if (pform_primitives[name]) { - VLerror("UDP primitive already exists."); + VLwarn("UDP primitive already exists."); } else { PUdp*udp = new PUdp(name, parms->size());