commit 1bc19dbc477acd2f5c7a534ca3fdf8e51fa992c2 parent eb84edfbecaaff758b90717a192fd50cf8ac7b52 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Fri, 12 Jan 2024 10:29:47 +0100 Fix an erroneous assertion Diffstat:
| M | src/sdis_heat_path_boundary_Xd_handle_external_net_flux.h | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/sdis_heat_path_boundary_Xd_handle_external_net_flux.h b/src/sdis_heat_path_boundary_Xd_handle_external_net_flux.h @@ -453,7 +453,7 @@ XD(handle_external_net_flux) if(sdis_medium_get_type(args->interf->medium_front) == SDIS_FLUID) { frag.side = SDIS_FRONT; } else { - ASSERT(sdis_medium_get_type(args->interf->medium_front) == SDIS_FLUID); + ASSERT(sdis_medium_get_type(args->interf->medium_back) == SDIS_FLUID); frag.side = SDIS_BACK; }