Skip to content

Commit

Permalink
Add a newline at end of printf as per
Browse files Browse the repository at this point in the history
  • Loading branch information
willend committed Mar 5, 2024
1 parent 73f951b commit f1c24fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ DECLARE
INITIALIZE
%{
calculated_angle=RAD2DEG*asin(12398.42*sqrt(8)/(2*5.4309*(E0*1e3)));
fprintf(stdout,"%s: Energy %g [keV] Mono Angle %g [deg]", NAME_INSTRUMENT, E0, calculated_angle);
fprintf(stdout,"%s: Energy %g [keV] Mono Angle %g [deg]\n", NAME_INSTRUMENT, E0, calculated_angle);

%}

Expand Down

0 comments on commit f1c24fd

Please sign in to comment.