Add precision in critical sensor

As debug screen has limited space for display so limiting critical
sensor value output to precision of 2.

Tested: verified with lcd debug card screen.

Change-Id: I9135b0c32d49adce658ee598a58736b9c0b6e64d
Signed-off-by: Vijay Khemka <vijaykhemka@fb.com>
diff --git a/src/usb-dbg.cpp b/src/usb-dbg.cpp
index dc6522e..9fa0553 100644
--- a/src/usb-dbg.cpp
+++ b/src/usb-dbg.cpp
@@ -23,6 +23,7 @@
 #include <fstream>
 #include <iostream>
 #include <sstream>
+#include <iomanip>
 #include <phosphor-logging/log.hpp>
 #include <appcommands.hpp>
 
@@ -795,7 +796,7 @@
             if (ipmi::storage::getSensorValue(senName, fvalue) == 0)
             {
                 std::stringstream ss;
-                ss << fvalue;
+                ss << std::fixed << std::setprecision(2) << fvalue;
 
                 std::string senStr;
                 if (val.find("short_name") != val.end())