]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Application/HelloWorld/HelloWorld.c
MdeModulePkg: Apply uncrustify changes
[mirror_edk2.git] / MdeModulePkg / Application / HelloWorld / HelloWorld.c
index e45a3746e7c4b88ccbaa6a5430ffdd57c30662a1..ab581c040cdde99acbb4b467b08d1c4be787d6d5 100644 (file)
@@ -20,7 +20,7 @@
 // the resource section. Thus the application can use '-?' option to show help message in\r
 // Shell.\r
 //\r
-GLOBAL_REMOVE_IF_UNREFERENCED EFI_STRING_ID mStringHelpTokenId = STRING_TOKEN (STR_HELLO_WORLD_HELP_INFORMATION);\r
+GLOBAL_REMOVE_IF_UNREFERENCED EFI_STRING_ID  mStringHelpTokenId = STRING_TOKEN (STR_HELLO_WORLD_HELP_INFORMATION);\r
 \r
 /**\r
   The user Entry Point for Application. The user code starts with this function\r
@@ -40,7 +40,7 @@ UefiMain (
   IN EFI_SYSTEM_TABLE  *SystemTable\r
   )\r
 {\r
-  UINT32 Index;\r
+  UINT32  Index;\r
 \r
   Index = 0;\r
 \r
@@ -48,11 +48,11 @@ UefiMain (
   // Three PCD type (FeatureFlag, UINT32 and String) are used as the sample.\r
   //\r
   if (FeaturePcdGet (PcdHelloWorldPrintEnable)) {\r
-    for (Index = 0; Index < PcdGet32 (PcdHelloWorldPrintTimes); Index ++) {\r
+    for (Index = 0; Index < PcdGet32 (PcdHelloWorldPrintTimes); Index++) {\r
       //\r
       // Use UefiLib Print API to print string to UEFI console\r
       //\r
-      Print ((CHAR16*)PcdGetPtr (PcdHelloWorldPrintString));\r
+      Print ((CHAR16 *)PcdGetPtr (PcdHelloWorldPrintString));\r
     }\r
   }\r
 \r