Skip to content
Snippets Groups Projects
Commit 733ea61b authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

correct typo in USER-REAXC code

parent 5c13b087
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ int Make_List(int n, int num_intrs, int type, reax_list *l, MPI_Comm comm)
l->num_intrs = num_intrs;
if (l->index) sfree(l->index, "list:index");
if (l->end_index) sfree(l->index, "list:end_index");
if (l->end_index) sfree(l->end_index, "list:end_index");
l->index = (int*) smalloc( n * sizeof(int), "list:index", comm );
l->end_index = (int*) smalloc( n * sizeof(int), "list:end_index", comm );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment