Skip to content

Commit

Permalink
Fix ambiguous assignment.
Browse files Browse the repository at this point in the history
  • Loading branch information
j-jorge committed Feb 20, 2020
1 parent 239480d commit c873f28
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,6 @@ void bf::base_editor_application::remove_options_at( int index, int count )
for ( int i=0; i != count; ++i )
{
--argc;
argv[argc] = NULL;
argv[argc] = (char*)NULL;
}
} // base_editor_application::remove_options_at()

0 comments on commit c873f28

Please sign in to comment.