Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix continuation line syntax for error messages #1265

Merged
merged 1 commit into from
Jun 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions fms2_io/include/unpack_data.inc
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ subroutine unpack_data_0d(fileobj, varid, varname, var_data)
var_data = var_data + buf_r8_kind

class default
call error("If using the scale_factor and add_offset variable, the buffer reading the data to needs to be"&
"r4_kind or r8_kind."//trim(msg))
call error("If using the scale_factor and add_offset variable, the buffer reading the data to needs to be &
&r4_kind or r8_kind."//trim(msg))
end select
end if
end subroutine
Expand Down Expand Up @@ -103,8 +103,8 @@ subroutine unpack_data_1d(fileobj, varid, varname, var_data)
var_data = var_data + buf_r8_kind

class default
call error("If using the scale_factor and add_offset variable, the buffer reading the data to needs to be"&
"r4_kind or r8_kind."//trim(msg))
call error("If using the scale_factor and add_offset variable, the buffer reading the data to needs to be &
&r4_kind or r8_kind."//trim(msg))
end select
end if
end subroutine
Expand Down Expand Up @@ -147,8 +147,8 @@ subroutine unpack_data_2d(fileobj, varid, varname, var_data)
var_data = var_data + buf_r8_kind

class default
call error("If using the scale_factor and add_offset variable, the buffer reading the data to needs to be"&
"r4_kind or r8_kind."//trim(msg))
call error("If using the scale_factor and add_offset variable, the buffer reading the data to needs to be &
&r4_kind or r8_kind."//trim(msg))
end select
end if
end subroutine
Expand Down Expand Up @@ -191,8 +191,8 @@ subroutine unpack_data_3d(fileobj, varid, varname, var_data)
var_data = var_data + buf_r8_kind

class default
call error("If using the scale_factor and add_offset variable, the buffer reading the data to needs to be"&
"r4_kind or r8_kind."//trim(msg))
call error("If using the scale_factor and add_offset variable, the buffer reading the data to needs to be &
&r4_kind or r8_kind."//trim(msg))
end select
end if
end subroutine
Expand Down Expand Up @@ -235,8 +235,8 @@ subroutine unpack_data_4d(fileobj, varid, varname, var_data)
var_data = var_data + buf_r8_kind

class default
call error("If using the scale_factor and add_offset variable, the buffer reading the data to needs to be"&
"r4_kind or r8_kind."//trim(msg))
call error("If using the scale_factor and add_offset variable, the buffer reading the data to needs to be &
&r4_kind or r8_kind."//trim(msg))
end select
end if
end subroutine
Expand Down Expand Up @@ -279,8 +279,8 @@ subroutine unpack_data_5d(fileobj, varid, varname, var_data)
var_data = var_data + buf_r8_kind

class default
call error("If using the scale_factor and add_offset variable, the buffer reading the data to needs to be"&
"r4_kind or r8_kind."//trim(msg))
call error("If using the scale_factor and add_offset variable, the buffer reading the data to needs to be &
&r4_kind or r8_kind."//trim(msg))
end select
end if
end subroutine