diff options
author | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-11-18 21:36:50 +0000 |
---|---|---|
committer | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-11-18 21:36:50 +0000 |
commit | 125c2cf4f152760920ee4b1e5d73e03daf02d394 (patch) | |
tree | 3b8a0afb72470763e10cdfb68e6602df86fe981f /ShellPkg/Library/UefiSortLib/UefiSortLib.c | |
parent | b594c4665866584649ee58cc8414cc1d5cd21e8d (diff) | |
download | edk2-platforms-125c2cf4f152760920ee4b1e5d73e03daf02d394.tar.xz |
updating headers from code review.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9449 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg/Library/UefiSortLib/UefiSortLib.c')
-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;
|