mirror of
https://github.com/transmission/transmission
synced 2025-01-30 19:03:04 +00:00
Remove useless parentheses
This commit is contained in:
parent
5693e59256
commit
c567588587
2 changed files with 2 additions and 2 deletions
|
@ -445,7 +445,7 @@ void gtr_combo_box_set_active_enum(GtkComboBox* combo_box, int value)
|
|||
/* find the one to select */
|
||||
i = 0;
|
||||
|
||||
while ((gtk_tree_model_iter_nth_child(model, &iter, NULL, i)))
|
||||
while (gtk_tree_model_iter_nth_child(model, &iter, NULL, i))
|
||||
{
|
||||
gtk_tree_model_get(model, &iter, column, ¤tValue, -1);
|
||||
|
||||
|
|
|
@ -1423,7 +1423,7 @@ static void printPortTest(tr_variant* top)
|
|||
{
|
||||
tr_variant* args;
|
||||
|
||||
if ((tr_variantDictFindDict(top, TR_KEY_arguments, &args)))
|
||||
if (tr_variantDictFindDict(top, TR_KEY_arguments, &args))
|
||||
{
|
||||
bool boolVal;
|
||||
|
||||
|
|
Loading…
Reference in a new issue