writefrudata: add missing curly braces for style

OpenBMC style dictates conditional statements needs curly braces.

Change-Id: Iff7066dec2e7a376f2a97e67591ba95b7aa8549d
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/writefrudata.cpp b/writefrudata.cpp
index d9de3fe..3c4ee20 100644
--- a/writefrudata.cpp
+++ b/writefrudata.cpp
@@ -101,7 +101,9 @@
         {
             size_t delimiterpos = fruValue.find(delimiter);
             if (delimiterpos != std::string::npos)
+            {
                 fruValue = fruValue.substr(delimiterpos + 1);
+            }
         }
     }
     return fruValue;