From: Dmitry Volyntsev Date: Mon, 3 Sep 2018 11:29:52 +0000 (+0300) Subject: Fixed compilation with gcc 4.4. X-Git-Tag: 0.2.4~9 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=6af4c90b0b6c0810411b27994e0668e39956071a;p=njs.git Fixed compilation with gcc 4.4. This fixes #49 issue on Github. --- diff --git a/nxt/nxt_strtod.c b/nxt/nxt_strtod.c index 0052703c..e1da6cce 100644 --- a/nxt/nxt_strtod.c +++ b/nxt/nxt_strtod.c @@ -111,6 +111,7 @@ nxt_adjust_pow10(int exp) return nxt_diyfp(nxt_uint64(0x98968000, 00000000), -40); default: nxt_unreachable(); + return nxt_diyfp(0, 0); } }