From fad677445e66fd1bc3196830bbdf971827e22d75 Mon Sep 17 00:00:00 2001 From: David Schultz Date: Wed, 9 Apr 2003 05:58:43 +0000 Subject: /strtopx/ s/result/&result/ This is the version I *meant* to commit last week. --- lib/libc/gdtoa/machdep_ldisQ.c | 2 +- lib/libc/gdtoa/machdep_ldisx.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libc') diff --git a/lib/libc/gdtoa/machdep_ldisQ.c b/lib/libc/gdtoa/machdep_ldisQ.c index 447b07f6abe2..e5cf6e63ad9d 100644 --- a/lib/libc/gdtoa/machdep_ldisQ.c +++ b/lib/libc/gdtoa/machdep_ldisQ.c @@ -40,6 +40,6 @@ strtold(const char * __restrict s, char ** __restrict sp) { long double result; - strtopQ(s, sp, result); + strtopQ(s, sp, &result); return result; } diff --git a/lib/libc/gdtoa/machdep_ldisx.c b/lib/libc/gdtoa/machdep_ldisx.c index 1920c39bb5a2..0b61de653f7c 100644 --- a/lib/libc/gdtoa/machdep_ldisx.c +++ b/lib/libc/gdtoa/machdep_ldisx.c @@ -40,6 +40,6 @@ strtold(const char * __restrict s, char ** __restrict sp) { long double result; - strtopx(s, sp, result); + strtopx(s, sp, &result); return result; } -- cgit v1.2.3