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 */
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);

View File

@ -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;