summaryrefslogtreecommitdiff
path: root/libnm-glib/libnm-glib-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'libnm-glib/libnm-glib-test.c')
-rw-r--r--libnm-glib/libnm-glib-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libnm-glib/libnm-glib-test.c b/libnm-glib/libnm-glib-test.c
index 16e6fad64..6284fecab 100644
--- a/libnm-glib/libnm-glib-test.c
+++ b/libnm-glib/libnm-glib-test.c
@@ -80,8 +80,8 @@ ip4_address_as_string (guint32 ip)
if (inet_ntop (AF_INET, &tmp_addr, buf, INET_ADDRSTRLEN)) {
return g_strdup (buf);
} else {
- g_warning ("%s: error converting IP4 address 0x%X",
- __func__, ntohl (tmp_addr.s_addr));
+ nm_warning ("%s: error converting IP4 address 0x%X",
+ __func__, ntohl (tmp_addr.s_addr));
return NULL;
}
}