Source-Changes-D archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: CVS commit: src/lib/libm/src



Hi,

From: "Matt Thomas" <matt%NetBSD.org@localhost>, Date: Mon, 28 Jan 2013 
06:34:10 +0000

> Module Name:  src
> Committed By: matt
> Date:         Mon Jan 28 06:34:09 UTC 2013
> 
> Modified Files:
>       src/lib/libm/src: s_scalbn.c s_scalbnf.c s_scalbnl.c
> 
> Log Message:
> Deal with _LP64 properly.
> 
> 
> To generate a diff of this commit:
> cvs rdiff -u -r1.15 -r1.16 src/lib/libm/src/s_scalbn.c
> cvs rdiff -u -r1.9 -r1.10 src/lib/libm/src/s_scalbnf.c
> cvs rdiff -u -r1.1 -r1.2 src/lib/libm/src/s_scalbnl.c
> 
> Please note that diffs are not public domain; they are subject to the
> copyright notices on the relevant files.
> 

This commit lacks ";", and breaks build.

Index: s_scalbnl.c
===================================================================
RCS file: /cvsroot/src/lib/libm/src/s_scalbnl.c,v
retrieving revision 1.2
diff -u -r1.2 s_scalbnl.c
--- s_scalbnl.c 28 Jan 2013 06:34:09 -0000      1.2
+++ s_scalbnl.c 28 Jan 2013 10:55:45 -0000
@@ -61,7 +61,7 @@
 long double
 scalbnl(long double x, int n)
 {
-       return scalblnl(x, n)
+       return scalblnl(x, n);
 }
 #endif
 

--
Ryo ONODERA // ryo_on%yk.rim.or.jp@localhost
PGP fingerprint = 82A2 DC91 76E0 A10A 8ABB  FD1B F404 27FA C7D1 15F3


Home | Main Index | Thread Index | Old Index