Fix types in error-logging YAML to match openbmc standards

Change-Id: If5e2e534740f0675ba9294905ae531e015aed85a
Signed-off-by: Deepak Kodihalli <dkodihal@in.ibm.com>
diff --git a/tools/example/xyz/openbmc_project/Example/Elog.metadata.yaml b/tools/example/xyz/openbmc_project/Example/Elog.metadata.yaml
index 9ca4a4e..244127c 100644
--- a/tools/example/xyz/openbmc_project/Example/Elog.metadata.yaml
+++ b/tools/example/xyz/openbmc_project/Example/Elog.metadata.yaml
@@ -2,18 +2,18 @@
   level: INFO
   meta:
     - str: "ERRNUM=0x%.4X"
-      type: int
+      type: uint16
     - str: FILE_PATH=%s
-      type: const char*
+      type: string
     - str: FILE_NAME=%s
-      type: const char*
+      type: string
 
 - name: TestErrorTwo
   level: ERR
   meta:
         - str: DEV_ADDR=0x%.8X
-          type: int
+          type: uint32
         - str: DEV_ID=%u
-          type: int
+          type: uint32
         - str: DEV_NAME=%s
-          type: const char*
+          type: string