From: Felix Fietkau Date: Sun, 11 Sep 2011 20:38:48 +0000 (+0200) Subject: use DPRINTF instead of fprintf(stderr) X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=31cf8623be5e402f4fdc624ba1f5c43e64c80ca9 use DPRINTF instead of fprintf(stderr) --- diff --git a/device.c b/device.c index 3f83cb4..7307414 100644 --- a/device.c +++ b/device.c @@ -179,7 +179,7 @@ void device_init_virtual(struct device *dev, const struct device_type *type, con if (name) strncpy(dev->ifname, name, IFNAMSIZ); - fprintf(stderr, "Initialize device '%s'\n", dev->ifname); + DPRINTF("Initialize device '%s'\n", dev->ifname); INIT_LIST_HEAD(&dev->users); dev->type = type; } @@ -228,7 +228,7 @@ void device_cleanup(struct device *dev) { struct device_user *dep, *tmp; - fprintf(stderr, "Clean up device '%s'\n", dev->ifname); + DPRINTF("Clean up device '%s'\n", dev->ifname); list_for_each_entry_safe(dep, tmp, &dev->users, list) { if (!dep->cb) continue;