Skip to content

Commit 6a95faa

Browse files
update content_lenght to c_long kind
Co-authored-by: Milan Curcic <caomaco@gmail.com>
1 parent 7cf8442 commit 6a95faa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/http/http_response.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module http_response
1111
type :: response_type
1212
character(len=:), public, allocatable :: url, content, method, err_msg, header_string
1313
integer, public :: status_code = 0
14-
integer(kind=8), public :: content_length = 0
14+
integer(kind=c_long), public :: content_length = 0
1515
logical, public :: ok = .true.
1616
type(fhash_tbl_t) :: header
1717
end type response_type

0 commit comments

Comments
 (0)