Formatting fix

git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2717 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams
2007-08-21 01:47:57 +00:00
parent 2b1e8226f1
commit 7442a81b7c

View File

@@ -199,9 +199,9 @@ real_is_up (NMDevice *self)
if (!err)
return (!((ifr.ifr_flags^IFF_UP) & IFF_UP));
if (errno != ENODEV)
{
nm_warning ("nm_device_is_up() could not get flags for device %s. errno = %d", iface, errno);
if (errno != ENODEV) {
nm_warning ("%s: could not get flags for device %s. errno = %d",
__func__, iface, errno);
}
return FALSE;