diff options
Diffstat (limited to 'ShellPkg/Library/UefiSortLib')
-rw-r--r-- | ShellPkg/Library/UefiSortLib/UefiSortLib.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ShellPkg/Library/UefiSortLib/UefiSortLib.c b/ShellPkg/Library/UefiSortLib/UefiSortLib.c index e7a8d1e952..f8a43db673 100644 --- a/ShellPkg/Library/UefiSortLib/UefiSortLib.c +++ b/ShellPkg/Library/UefiSortLib/UefiSortLib.c @@ -55,7 +55,8 @@ QuickSortWorker ( IN CONST UINTN ElementSize,
IN SORT_COMPARE CompareFunction,
IN VOID *Buffer
- ){
+ )
+{
VOID *Pivot;
UINTN LoopCount;
UINTN NextSwapLocation;
@@ -154,7 +155,8 @@ PerformQuickSort ( IN CONST UINTN Count,
IN CONST UINTN ElementSize,
IN SORT_COMPARE CompareFunction
- ){
+ )
+{
VOID *Buffer;
ASSERT(BufferToSort != NULL);
@@ -188,7 +190,8 @@ INTN DevicePathCompare (
IN VOID *Buffer1,
IN VOID *Buffer2
- ){
+ )
+{
EFI_DEVICE_PATH_PROTOCOL *DevicePath1;
EFI_DEVICE_PATH_PROTOCOL *DevicePath2;
CHAR16 *TextPath1;
|