Bug 1726042 - Update nestegg to ec6adfbb. r=bryce

Differential Revision: https://phabricator.services.mozilla.com/D122782
This commit is contained in:
Matthew Gregan 2021-08-16 22:26:31 +00:00
parent 10263485a1
commit 38816a15bc
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/kinetiknz/nestegg.svg?branch=master)](https://travis-ci.org/kinetiknz/nestegg)
[![Build Status](https://github.com/mozilla/nestegg/actions/workflows/build.yml/badge.svg)](https://github.com/mozilla/nestegg/actions/workflows/build.yml)
See INSTALL for build instructions.

View File

@ -19,5 +19,5 @@ origin:
license: "ISC"
# update.sh will update this value
release: "b50521d4f5bf659c66a56f8a90d8776aacaa1e36 (2019-11-05 11:33:33 +1300)"
release: "ec6adfbbf979678e3058cc4695257366f39e290b (2021-08-14 08:05:30 +1200)"

View File

@ -835,7 +835,7 @@ ne_read_float(nestegg_io * io, double * val, uint64_t length)
union {
uint64_t u;
struct {
#if __FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__
#if defined(__FLOAT_WORD_ORDER__) && __FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__
uint32_t _pad;
float f;
#else