aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/SortTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/SortTest.cpp')
-rw-r--r--tests/SortTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/SortTest.cpp b/tests/SortTest.cpp
index b9c32fdb81..28c6e682de 100644
--- a/tests/SortTest.cpp
+++ b/tests/SortTest.cpp
@@ -45,7 +45,7 @@ static void TestSort(skiatest::Reporter* reporter) {
for (int i = 0; i < 10000; i++) {
int count = rand.nextRangeU(1, SK_ARRAY_COUNT(randomArray));
rand_array(rand, randomArray, count);
-
+
// Use qsort as the reference sort.
memcpy(sortedArray, randomArray, sizeof(randomArray));
qsort(sortedArray, count, sizeof(sortedArray[0]), compare_int);