Skip to content
Snippets Groups Projects
Commit 6aead8f3 authored by Sergey Kosukhin's avatar Sergey Kosukhin
Browse files

Fix the uniq example

parent c57821f8
No related branches found
No related tags found
1 merge request!76Fix the uniq example
Pipeline #96263 passed
......@@ -158,7 +158,7 @@ PROGRAM output_test
WRITE (0, *) ' remaining events: ', remaining_event_steps
IF (remaining_event_steps > SIZE(mtime_date_container_a)) THEN
ALLOCATE (tmp(SIZE(mtime_date_container_a)), stat=ierrstat)
ALLOCATE (tmp(remaining_event_steps), stat=ierrstat)
IF (ierrstat /= 0) STOP 'allocate failed'
tmp(1:remaining_event_steps) = mtime_date_uniq(1:remaining_event_steps)
CALL MOVE_ALLOC(tmp, mtime_date_container_a)
......@@ -172,7 +172,7 @@ PROGRAM output_test
DEALLOCATE (mtime_date_container_a)
DEALLOCATE (mtime_date_container_b)
DEALLOCATE (tmp_jd)
CALL deallocateJulianday(tmp_jd)
CONTAINS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment