Remove a copy

Capturing by auto here causes a copy.  Found using static analysis.

Change-Id: Ifbb08f9af0cd6eeec1e611c610e7adf53e17665c
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/redfish-core/lib/chassis.hpp b/redfish-core/lib/chassis.hpp
index 4a79783..9ee10b5 100644
--- a/redfish-core/lib/chassis.hpp
+++ b/redfish-core/lib/chassis.hpp
@@ -152,7 +152,7 @@
     {
         if (!object.second.empty())
         {
-            const auto service = object.second.front();
+            const auto& service = object.second.front();
 
             BMCWEB_LOG_DEBUG("Get intrusion status by service ");