From 3428a60f7e98e39533799921b6bb04f075a1ed5c Mon Sep 17 00:00:00 2001 From: Jeffrey Curtis Date: Wed, 29 Jan 2025 10:55:38 -0600 Subject: [PATCH] Fix writing format specifier in aero_particle_extract.F90 to avoid ifx compiler issue (#209) --- src/extract_aero_particles.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extract_aero_particles.F90 b/src/extract_aero_particles.F90 index 1197adaa9..cda2f2115 100644 --- a/src/extract_aero_particles.F90 +++ b/src/extract_aero_particles.F90 @@ -97,7 +97,7 @@ program extract_aero_particles aero_particle_species_mass(aero_state%apa%particle(i_part), & i_spec, aero_data) end do - write(out_unit, *) '' + write(out_unit, '(a)') '' end do call close_file(out_unit)