debug: remove newline from debug messages
[project/netifd.git] / vlan.c
diff --git a/vlan.c b/vlan.c
index 4e843442af07b5063d7d9146ffb6bab316becd65..52d855ade1c9ac23f0cfd2191aff2d4621b1325c 100644 (file)
--- a/vlan.c
+++ b/vlan.c
@@ -208,7 +208,7 @@ static struct device *get_vlan_device(struct device *dev, char *id_str, bool cre
        if (snprintf(name, sizeof(name), "%s.%d", dev->ifname, id) >= (int)sizeof(name) - 1)
                return NULL;
 
-       D(DEVICE, "Create vlan device '%s'\n", name);
+       D(DEVICE, "Create vlan device '%s'", name);
 
        vldev = calloc(1, sizeof(*vldev));
        if (!vldev)