Skip to content

Commit

Permalink
Compilation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaderi committed Sep 9, 2024
1 parent a84556b commit e159c29
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions example/ndpiReader.c
Original file line number Diff line number Diff line change
Expand Up @@ -6163,8 +6163,9 @@ void ballTreeUnitTest() {
ndpi_knn result;
u_int32_t nun_results = 2;
int i, j;

assert(ball_tree = ndpi_btree_init(rows, num_rows, num_columns));

ball_tree = ndpi_btree_init(rows, num_rows, num_columns);
assert(ball_tree != NULL);
result = ndpi_btree_query(ball_tree, q_rows,
sizeof(q_rows) / sizeof(double*),
num_columns, nun_results);
Expand Down

0 comments on commit e159c29

Please sign in to comment.