Fix Klocwork Issue:bitwise operation size mismatch

Bitwise operation on different integer sizes.
Fixed by static_cast to larger integer size.

Signed-off-by: P Dheeraj Srujan Kumar <p.dheeraj.srujan.kumar@intel.com>
Change-Id: I71be855cbf621d768efe1a36b59b1f14e2c9635c
diff --git a/message.hpp b/message.hpp
index f01fcc9..721a7b1 100644
--- a/message.hpp
+++ b/message.hpp
@@ -175,7 +175,7 @@
             auto request =
                 reinterpret_cast<LAN::header::Request*>(payload.data());
             command |= request->netfn << 8;
-            command |= request->cmd;
+            command |= static_cast<uint32_t>(request->cmd);
         }
         return command;
     }