From 95382c3afb9d50ffc7c0d178dbe9d76c763d687c Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Thu, 19 Feb 2015 16:05:49 -0800 Subject: Suppress a bunch of cast-qual warnings. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Squelch warning: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Wcast-qual] similar to g630f54f. Change strtod to g_ascii_strtod to squelch a checkAPIs error. Change-Id: Ib2d26ef89f08827a5adc07e35eaf876cd7b8d14e Reviewed-on: https://code.wireshark.org/review/7269 Reviewed-by: Gerald Combs --- rawshark.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'rawshark.c') diff --git a/rawshark.c b/rawshark.c index f75f9abb5b..6c901fcb57 100644 --- a/rawshark.c +++ b/rawshark.c @@ -68,11 +68,12 @@ #include #include -#include -#include #include +#include #include +#include #include +#include #include "globals.h" #include @@ -440,11 +441,13 @@ main(int argc, char *argv[]) GPtrArray *disp_fields = g_ptr_array_new(); guint fc; gboolean skip_pcap_header = FALSE; +DIAG_OFF(cast-qual) static const struct option long_options[] = { {(char *)"help", no_argument, NULL, 'h'}, {(char *)"version", no_argument, NULL, 'v'}, {0, 0, 0, 0 } }; +DIAG_ON(cast-qual) #define OPTSTRING_INIT "d:F:hlnN:o:pr:R:sS:t:v" -- cgit v1.2.3