Skip to content

Commit 2bc1a8b

Browse files
committed
median: remove trailing whitespaces
1 parent d506f4a commit 2bc1a8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/stdlib_stats_median.fypp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ contains
2020
${t1}$, intent(in) :: x${ranksuffix(rank)}$
2121
logical, intent(in), optional :: mask
2222
real(${o1}$) :: res
23-
23+
2424
integer(kind = int64) :: c, n
2525
${t1}$, allocatable :: x_tmp(:)
2626

2727
if (.not.optval(mask, .true.) .or. size(x) == 0) then
2828
res = ieee_value(1._${o1}$, ieee_quiet_nan)
2929
return
3030
end if
31-
31+
3232
n = size(x, kind=int64)
3333
c = floor( (n + 1) / 2._${o1}$, kind=int64 )
3434

0 commit comments

Comments
 (0)