From d24232a647fc7e147447ff3c233c5704a8053645 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Sat, 27 Sep 2014 08:37:29 -0400 Subject: [PATCH 1/1] Fix a little something caught by perl -c. Signed-off-by: Jason Stephenson --- lib/NCIP/ILS.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/NCIP/ILS.pm b/lib/NCIP/ILS.pm index df63d82..ef64d93 100644 --- a/lib/NCIP/ILS.pm +++ b/lib/NCIP/ILS.pm @@ -459,7 +459,7 @@ sub find_bibliographic_ids { } } - return (wantarray) @ids : [@ids]; + return (wantarray) ? @ids : [@ids]; } 1; -- 2.43.2