This fixes a "cast drops const qualifier" warning.
static int compare_snapshots(const void *a, const void *b)
{
static int compare_snapshots(const void *a, const void *b)
{
- struct snapshot *s1 = *(struct snapshot **)a;
- struct snapshot *s2 = *(struct snapshot **)b;
+ struct snapshot *s1 = *(struct snapshot * const *)a;
+ struct snapshot *s2 = *(struct snapshot * const *)b;
return NUM_COMPARE(s2->creation_time, s1->creation_time);
}
return NUM_COMPARE(s2->creation_time, s1->creation_time);
}