libnm-util: remove useless semicolons

This commit is contained in:
Dan Williams 2010-05-26 00:30:32 -07:00
parent 7754690e7e
commit 22aee1ac8b

View file

@ -608,9 +608,8 @@ nm_connection_verify (NMConnection *connection, GError **error)
/* Build up the list of settings */
g_hash_table_iter_init (&iter, priv->settings);
while (g_hash_table_iter_next (&iter, NULL, &value)) {
while (g_hash_table_iter_next (&iter, NULL, &value))
all_settings = g_slist_append (all_settings, value);
}
/* Now, run the verify function of each setting */
g_hash_table_iter_init (&iter, priv->settings);