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 --- randpkt.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'randpkt.c') diff --git a/randpkt.c b/randpkt.c index 9ddfd78e28..bf391be2bb 100644 --- a/randpkt.c +++ b/randpkt.c @@ -48,6 +48,7 @@ #include #include "wiretap/wtap.h" #include "wsutil/file_util.h" +#include #ifdef _WIN32 #include @@ -512,10 +513,12 @@ main(int argc, char **argv) char *produce_filename = NULL; int produce_max_bytes = 5000; pkt_example *example; +DIAG_OFF(cast-qual) static const struct option long_options[] = { {(char *)"help", no_argument, NULL, 'h'}, {0, 0, 0, 0 } }; +DIAG_ON(cast-qual) #ifdef _WIN32 arg_list_utf_16to8(argc, argv); -- cgit v1.2.3