From 7563a8d4f24022f15d2bb91e67ff07a0fd73fadd Mon Sep 17 00:00:00 2001
From: EJ Dohmen <ezekiel.dohmen@ligo.org>
Date: Wed, 23 Feb 2022 10:19:58 -0800
Subject: [PATCH] Adding missing die

---
 src/epics/util/lib/IPCx.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/epics/util/lib/IPCx.pm b/src/epics/util/lib/IPCx.pm
index e3cc4915d..714f86e11 100644
--- a/src/epics/util/lib/IPCx.pm
+++ b/src/epics/util/lib/IPCx.pm
@@ -343,7 +343,7 @@ if ($::ipcxCnt > 0) {
 
     #Create the file if it doesn't exist
     if( !-e $iFile) {
-        open my $fc, ">", $iFile or "***ERROR: Could not create the empty IPCx parameter file $iFile\n";
+        open my $fc, ">", $iFile or die "***ERROR: Could not create the empty IPCx parameter file $iFile\n";
         close $fc;
     }
 
-- 
GitLab