diff options
Diffstat (limited to 'ui/cli/tap-icmpv6stat.c')
-rw-r--r-- | ui/cli/tap-icmpv6stat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/cli/tap-icmpv6stat.c b/ui/cli/tap-icmpv6stat.c index fb486c0ee2..89da415425 100644 --- a/ui/cli/tap-icmpv6stat.c +++ b/ui/cli/tap-icmpv6stat.c @@ -83,8 +83,8 @@ static gint compare_doubles(gconstpointer a, gconstpointer b) { double ad, bd; - ad = *(double *)a; - bd = *(double *)b; + ad = *(const double *)a; + bd = *(const double *)b; if (ad < bd) return -1; |