diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-14 09:57:36 -0600 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-17 23:19:55 -0600 |
commit | 26156aafe511edbdf7f6f9c9a729db47ffa06012 (patch) | |
tree | 8bda1ab9856225971533b7764dbef52bacd9c092 | |
parent | bd31b4d65ca968ca8cdd0ad4c53c0a45276bd7f9 (diff) |
fixup patch
-rw-r--r-- | package/firefox/patches/patch-xpcom_ds_nsMathUtils_h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/firefox/patches/patch-xpcom_ds_nsMathUtils_h b/package/firefox/patches/patch-xpcom_ds_nsMathUtils_h index 0b3a738bb..578dc64c6 100644 --- a/package/firefox/patches/patch-xpcom_ds_nsMathUtils_h +++ b/package/firefox/patches/patch-xpcom_ds_nsMathUtils_h @@ -12,9 +12,9 @@ #else - return finite(aNum); +#ifdef _GLIBCXX_CMATH -+ return std::isfinite(d); ++ return std::isfinite(aNum); +#else -+ return isfinite(d); ++ return isfinite(aNum); +#endif #endif } |