Update fmtlib fix

The actual operator overload was missing from the previous fix.

Signed-off-by: Eddie James <eajames@linux.ibm.com>
Change-Id: I64fc9c347ce3ed16eb8bf8d944fbf066b4c923b8
diff --git a/occ_command.cpp b/occ_command.cpp
index 1620156..d8eec1c 100644
--- a/occ_command.cpp
+++ b/occ_command.cpp
@@ -19,6 +19,11 @@
 
 // #define TRACE_PACKETS
 
+std::ostream& operator<<(std::ostream& os, open_power::occ::SysPwrMode spm)
+{
+    return os << static_cast<int>(spm);
+}
+
 namespace open_power
 {
 namespace occ