1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-03 05:25:52 +00:00

Remove useless parentheses

This commit is contained in:
Mike Gelfand 2019-03-17 09:18:27 +03:00
parent 5693e59256
commit c567588587
2 changed files with 2 additions and 2 deletions

View file

@ -445,7 +445,7 @@ void gtr_combo_box_set_active_enum(GtkComboBox* combo_box, int value)
/* find the one to select */ /* find the one to select */
i = 0; 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, &currentValue, -1); gtk_tree_model_get(model, &iter, column, &currentValue, -1);

View file

@ -1423,7 +1423,7 @@ static void printPortTest(tr_variant* top)
{ {
tr_variant* args; tr_variant* args;
if ((tr_variantDictFindDict(top, TR_KEY_arguments, &args))) if (tr_variantDictFindDict(top, TR_KEY_arguments, &args))
{ {
bool boolVal; bool boolVal;