Commit a2f8887b authored by Steve Holme's avatar Steve Holme
Browse files

curl_endian: Fixed build when 64-bit integers are not supported (Part 2)

Missed Curl_read64_be() in commit bb12d444 :(
parent b2c01f02
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -138,6 +138,7 @@ unsigned int Curl_read32_be(unsigned char *buf)
         ((unsigned int)buf[2] << 8) | ((unsigned int)buf[3]);
}

#if (CURL_SIZEOF_CURL_OFF_T > 4)
/*
 * Curl_read64_be()
 *
@@ -173,6 +174,8 @@ unsigned __int64 Curl_read64_be(unsigned char *buf)
}
#endif

#endif /* CURL_SIZEOF_CURL_OFF_T > 4 */

/*
 * Curl_write16_le()
 *