]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
xfs_quota: drop pointless qsort cmp casting
authorEric Sandeen <sandeen@redhat.com>
Fri, 12 Feb 2021 22:23:05 +0000 (17:23 -0500)
committerEric Sandeen <sandeen@sandeen.net>
Fri, 12 Feb 2021 22:23:05 +0000 (17:23 -0500)
The function cast in this call to qsort is odd - we don't do it
anywhere else, and it doesn't gain us anything or help in any
way.

So remove it; since we are now passing void *p pointers in, locally
use du_t *d pointers to refer to the du_t's in the compare function.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
quota/quot.c

index 8544aef634f93164b890892899b3d4c3d5073e2a..9e8086c4d2a469b970bd08ef408ac6b268559d33 100644 (file)
@@ -173,16 +173,19 @@ quot_bulkstat_mount(
 
 static int
 qcompare(
-       du_t            *p1,
-       du_t            *p2)
+       const void      *p1,
+       const void      *p2)
 {
-       if (p1->blocks > p2->blocks)
+       du_t            *d1 = (struct du *)p1;
+       du_t            *d2 = (struct du *)p2;
+
+       if (d1->blocks > d2->blocks)
                return -1;
-       if (p1->blocks < p2->blocks)
+       if (d1->blocks < d2->blocks)
                return 1;
-       if (p1->id > p2->id)
+       if (d1->id > d2->id)
                return 1;
-       else if (p1->id < p2->id)
+       else if (d1->id < d2->id)
                return -1;
        return 0;
 }
@@ -204,8 +207,7 @@ quot_report_mount_any_type(
 
        fprintf(fp, _("%s (%s) %s:\n"),
                mount->fs_name, mount->fs_dir, type_to_string(type));
-       qsort(dp, count, sizeof(dp[0]),
-               (int (*)(const void *, const void *))qcompare);
+       qsort(dp, count, sizeof(dp[0]), qcompare);
        for (; dp < &dp[count]; dp++) {
                if (dp->blocks == 0)
                        return;