summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2016-01-08 16:11:41 +0100
committerThomas Haller <thaller@redhat.com>2016-01-08 16:11:56 +0100
commit4706df11fd2cc5df5d476667c3c51685ede48c17 (patch)
tree661780324f2ef16befb686db68dfc35d8863943f
parentd85b57946a5c3a0f226155fc9ebdb3930368dc2f (diff)
downloadNetworkManager-4706df11fd2cc5df5d476667c3c51685ede48c17.tar.gz
trivial: fix whitespace
-rw-r--r--src/nm-manager.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nm-manager.c b/src/nm-manager.c
index cf29d3012d..02dcc6f6f8 100644
--- a/src/nm-manager.c
+++ b/src/nm-manager.c
@@ -1042,22 +1042,22 @@ system_create_virtual_device (NMManager *self, NMConnection *connection)
factory = nm_device_factory_manager_find_factory_for_connection (connection);
if (!factory) {
nm_log_err (LOGD_DEVICE, "(%s:%s) NetworkManager plugin for '%s' unavailable",
- nm_connection_get_id (connection), iface,
- nm_connection_get_connection_type (connection));
+ nm_connection_get_id (connection), iface,
+ nm_connection_get_connection_type (connection));
return NULL;
}
device = nm_device_factory_create_device (factory, iface, NULL, connection, NULL, &error);
if (!device) {
nm_log_warn (LOGD_DEVICE, "(%s) factory can't create the device: %s",
- nm_connection_get_id (connection), error->message);
+ nm_connection_get_id (connection), error->message);
g_error_free (error);
return NULL;
}
if (!add_device (self, device, &error)) {
nm_log_warn (LOGD_DEVICE, "(%s) can't register the device with manager: %s",
- nm_connection_get_id (connection), error->message);
+ nm_connection_get_id (connection), error->message);
g_error_free (error);
g_object_unref (device);
return NULL;