From d2366a7cf325b9f8bc054194c6ffe04430f1b263 Mon Sep 17 00:00:00 2001
From: Andreas Romeyke <andreas.romeyke@slub-dresden.de>
Date: Tue, 28 May 2024 14:10:53 +0200
Subject: [PATCH] - fixed warning

---
 lib/SLUB/LZA/TA/Command/report.pm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/SLUB/LZA/TA/Command/report.pm b/lib/SLUB/LZA/TA/Command/report.pm
index 99facd6..ac613f2 100644
--- a/lib/SLUB/LZA/TA/Command/report.pm
+++ b/lib/SLUB/LZA/TA/Command/report.pm
@@ -189,7 +189,8 @@ sub get_ldp_projects {
             }
         }
     }
-    return sort keys %projects;
+    my @ret = sort keys %projects;
+    return @ret;
 }
 
 sub execute {
-- 
GitLab