summaryrefslogtreecommitdiff
path: root/ShellPkg/Application/ShellSortTestApp
diff options
context:
space:
mode:
authorjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>2009-11-18 21:36:50 +0000
committerjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>2009-11-18 21:36:50 +0000
commit125c2cf4f152760920ee4b1e5d73e03daf02d394 (patch)
tree3b8a0afb72470763e10cdfb68e6602df86fe981f /ShellPkg/Application/ShellSortTestApp
parentb594c4665866584649ee58cc8414cc1d5cd21e8d (diff)
downloadedk2-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/Application/ShellSortTestApp')
-rw-r--r--ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.c b/ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.c
index 5a671e0395..83b5b5572d 100644
--- a/ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.c
+++ b/ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.c
@@ -48,7 +48,8 @@ EFIAPI
ShellAppMain (
IN UINTN Argc,
IN CHAR16 **Argv
- ){
+ )
+{
INTN Array[10] = {2,3,4,1,5,6,7,8,1,5};
Print(L"Array = %d, %d, %d, %d, %d, %d, %d, %d, %d, %d\r\n", Array[0],Array[1],Array[2],Array[3],Array[4],Array[5],Array[6],Array[7],Array[8],Array[9]);
PerformQuickSort(Array, 10, sizeof(INTN), Test);