Skip to content

Commit

Permalink
Merge pull request #118 from Statoil/cxx-warnings
Browse files Browse the repository at this point in the history
Fix signed unsigned comparison warning
  • Loading branch information
joakim-hove authored Aug 9, 2018
2 parents efcce5b + 25fd7aa commit f580e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libert/applications/ert_tui/menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ static void menu_item_free__(void * arg) {

static bool __string_contains(const char * string , const char * char_set) {
bool contains = false;
int i = 0;
size_t i = 0;
do {
if (strchr(string , char_set[i]) != NULL)
contains = true;
Expand Down

0 comments on commit f580e4f

Please sign in to comment.