Fix format string warnings
authorMarcel Holtmann <marcel@holtmann.org>
Wed, 6 May 2009 00:55:33 +0000 (17:55 -0700)
committerMarcel Holtmann <marcel@holtmann.org>
Wed, 6 May 2009 00:55:33 +0000 (17:55 -0700)
plugins/ethernet.c
plugins/modem.c

index 79ddf2b..e6d45ff 100644 (file)
@@ -51,7 +51,7 @@ static void ethernet_newlink(unsigned flags, unsigned change, void *user_data)
        struct connman_device *device = user_data;
        struct ethernet_data *ethernet = connman_device_get_data(device);
 
-       DBG("index %d flags %ld change %ld", ethernet->index, flags, change);
+       DBG("index %d flags %d change %d", ethernet->index, flags, change);
 
        if ((ethernet->flags & IFF_UP) != (flags & IFF_UP)) {
                if (flags & IFF_UP) {
index 1703646..4c8a3e3 100644 (file)
@@ -141,7 +141,7 @@ static gboolean modem_event(GIOChannel *channel,
                return FALSE;
        }
 
-       DBG("Read %d bytes (offset %d)", len, modem->offset);
+       DBG("Read %zu bytes (offset %d)", len, modem->offset);
 
        if (g_str_has_suffix(modem->buf, "\r\n") == TRUE) {
                for (list = modem->callbacks; list; list = list->next) {