Skip to content

Commit 0f64bc0

Browse files
authored
fixed issue with line being too long in error stop
1 parent fd15686 commit 0f64bc0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/stdlib_hashmap_wrappers.f90

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,9 @@ subroutine get_char_key( key, value )
206206
key_as_char = key_size
207207
case(2)
208208
if ( iand( key_size, 1_int64 ) > 0 ) then
209-
error stop "Internal Error at stdlib_hashmaps: System uses 2 bytes per character, so key_size can't be an odd number"
209+
error stop "Internal Error at stdlib_hashmaps:&
210+
& System uses 2 bytes per character, so&
211+
& key_size can't be an odd number"
210212
end if
211213
key_as_char = ishft( key_size, -1 )
212214
case(4)

0 commit comments

Comments
 (0)