]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/C/Common/CommonLib.c
Fix build error.
[mirror_edk2.git] / BaseTools / Source / C / Common / CommonLib.c
index 970b2af27b367d3b77b14af6a6c3ba9a5cd4f891..cb72e2723f3a65dc745930bda6f0776a1e0dabfc 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
 \r
-Copyright (c) 2004 - 2008, Intel Corporation                                                         \r
-All rights reserved. This program and the accompanying materials                          \r
+Copyright (c) 2004 - 2008, Intel Corporation. All rights reserved.<BR>\r
+This program and the accompanying materials                          \r
 are licensed and made available under the terms and conditions of the BSD License         \r
 which accompanies this distribution.  The full text of the license may be found at        \r
 http://opensource.org/licenses/bsd-license.php                                            \r
@@ -472,7 +472,7 @@ Returns:
 \r
   printf (\r
     "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x\n",\r
-    Guid->Data1,\r
+    (unsigned) Guid->Data1,\r
     Guid->Data2,\r
     Guid->Data3,\r
     Guid->Data4[0],\r
@@ -529,7 +529,7 @@ Returns:
     sprintf (\r
       (CHAR8 *)Buffer,\r
       "%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X",\r
-      Guid->Data1,\r
+      (unsigned) Guid->Data1,\r
       Guid->Data2,\r
       Guid->Data3,\r
       Guid->Data4[0],\r
@@ -545,7 +545,7 @@ Returns:
     sprintf (\r
       (CHAR8 *)Buffer,\r
       "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",\r
-      Guid->Data1,\r
+      (unsigned) Guid->Data1,\r
       Guid->Data2,\r
       Guid->Data3,\r
       Guid->Data4[0],\r