]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/Misc.c
ShellPkg: Apply uncrustify changes
[mirror_edk2.git] / ShellPkg / Library / UefiShellDebug1CommandsLib / Edit / Misc.c
index db18010e456e865e7195722aa5add0e87ea4e890..fc77fe40684b2305828090bb372c8736a4b46873 100644 (file)
 **/\r
 EFI_EDITOR_LINE *\r
 LineDup (\r
-  IN  EFI_EDITOR_LINE *Src\r
+  IN  EFI_EDITOR_LINE  *Src\r
   )\r
 {\r
-  EFI_EDITOR_LINE *Dest;\r
+  EFI_EDITOR_LINE  *Dest;\r
 \r
   //\r
   // allocate for the line structure\r
@@ -31,6 +31,7 @@ LineDup (
   if (Dest == NULL) {\r
     return NULL;\r
   }\r
+\r
   //\r
   // allocate and set the line buffer\r
   //\r
@@ -59,26 +60,16 @@ LineDup (
 **/\r
 VOID\r
 LineFree (\r
-  IN  EFI_EDITOR_LINE *Src\r
+  IN  EFI_EDITOR_LINE  *Src\r
   )\r
 {\r
   if (Src == NULL) {\r
-    return ;\r
+    return;\r
   }\r
+\r
   //\r
   // free the line buffer and then the line structure itself\r
   //\r
   SHELL_FREE_NON_NULL (Src->Buffer);\r
   SHELL_FREE_NON_NULL (Src);\r
-\r
 }\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r
-\r