value_string: Change the bytes_string struct to avoid Wpointer-sign

Change-Id: Ie9db520f73dbbf61a6aecb37cf5ed8839f3e1052
Reviewed-on: https://code.wireshark.org/review/37770
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Anders Broman 2020-07-07 14:48:01 +02:00 committed by Anders Broman
parent 7ed3180a29
commit 5b91801a8d
1 changed files with 1 additions and 1 deletions

View File

@ -318,7 +318,7 @@ try_rval64_to_str_idx(const guint64 val, const range_string *rs, gint *idx);
/* BYTES TO STRING MATCHING */
typedef struct _bytes_string {
const char *value;
const guint8 *value;
const size_t value_length;
const gchar *strptr;
} bytes_string;