From 38f301564b3792020680a40c0ae2ed3f02e1017a Mon Sep 17 00:00:00 2001 From: Hannes Brandt Date: Tue, 12 Dec 2023 18:50:42 +0100 Subject: [PATCH] feature hanging-corners: add missing semicolon --- src/p4est_mesh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p4est_mesh.c b/src/p4est_mesh.c index 60abe809c..35b6aca9b 100644 --- a/src/p4est_mesh.c +++ b/src/p4est_mesh.c @@ -1240,7 +1240,7 @@ p4est_mesh_new_ext (p4est_t * p4est, p4est_ghost_t * ghost, p4est_mesh_params_t params; /* initialize parameter struct to pass to mesh_new_params */ - p4est_mesh_params_init (¶ms) + p4est_mesh_params_init (¶ms); params.btype = btype; params.compute_level_lists = compute_level_lists; params.compute_tree_index = compute_tree_index;