Skip to content

Commit 9496beb

Browse files
committed
Update stdlib_hashmap_chaining.f90
Bug fix
1 parent ce8703e commit 9496beb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stdlib_hashmap_chaining.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ module subroutine map_chain_entry(map, key, other, conflict)
551551
character(*), parameter :: procedure = 'MAP_ENTRY'
552552

553553
! Check that map is initialized.
554-
if (.not. map % initialized) init_chaining_map( map )
554+
if (.not. map % initialized) call init_chaining_map( map )
555555

556556
hash_val = map % hasher( key )
557557

0 commit comments

Comments
 (0)