aboutsummaryrefslogtreecommitdiffstats
path: root/caputils
diff options
context:
space:
mode:
Diffstat (limited to 'caputils')
-rw-r--r--caputils/capture-pcap-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/caputils/capture-pcap-util.c b/caputils/capture-pcap-util.c
index 2d5fda62e1..80304011d1 100644
--- a/caputils/capture-pcap-util.c
+++ b/caputils/capture-pcap-util.c
@@ -300,7 +300,7 @@ if_info_get(const char *name)
*/
for (;;) {
g_free(description);
- if ((description = g_malloc(descrlen)) != NULL) {
+ if ((description = (char*)g_malloc(descrlen)) != NULL) {
ifrdesc.ifr_buffer.buffer = description;
ifrdesc.ifr_buffer.length = descrlen;
if (ioctl(s, SIOCGIFDESCR, &ifrdesc) == 0) {
@@ -327,7 +327,7 @@ if_info_get(const char *name)
* to get the description length - it's clamped
* to a maximum of IFDESCRSIZE.
*/
- if ((description = g_malloc(descrlen)) != NULL) {
+ if ((description = (char*)g_malloc(descrlen)) != NULL) {
ifrdesc.ifr_data = (caddr_t)description;
if (ioctl(s, SIOCGIFDESCR, &ifrdesc) != 0) {
/*