Remove two pointless whitespaces
authorMarcel Holtmann <marcel@holtmann.org>
Sat, 11 Sep 2010 10:36:44 +0000 (12:36 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Sat, 11 Sep 2010 10:36:44 +0000 (12:36 +0200)
gdhcp/client.c

index 1919af7..b9a0e7f 100644 (file)
@@ -919,12 +919,12 @@ static GList *get_option_value_list(char *value)
        while ((pos = strchr(pos, ' ')) != NULL) {
                *pos = '\0';
 
-               list =  g_list_append(list, g_strdup(value));
+               list = g_list_append(list, g_strdup(value));
 
                value = ++pos;
        }
 
-       list =  g_list_append(list, g_strdup(value));
+       list = g_list_append(list, g_strdup(value));
 
        return list;
 }