app (gimprc): Delete dead assignment
This commit is contained in:
@ -115,11 +115,7 @@ gimp_rc_add_unknown_token (GimpConfig *config,
|
|||||||
token->key = g_strdup (key);
|
token->key = g_strdup (key);
|
||||||
token->value = g_strdup (value);
|
token->value = g_strdup (value);
|
||||||
|
|
||||||
if (last)
|
if (!last)
|
||||||
{
|
|
||||||
last = g_slist_last (g_slist_append (last, token));
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
unknown_tokens = g_slist_append (NULL, token);
|
unknown_tokens = g_slist_append (NULL, token);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user