changeset 15851:4bfe605f5ecf

randpoisson.c: Use Octave spacing convention on function calls. * liboctave/numeric/randpoisson.c: Use Octave spacing convention on function calls.
author Rik <rik@octave.org>
date Wed, 26 Dec 2012 11:25:12 -0800
parents ffd1a99733bd
children cd115ec92248
files liboctave/numeric/randpoisson.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/numeric/randpoisson.c	Wed Dec 26 11:14:46 2012 -0800
+++ b/liboctave/numeric/randpoisson.c	Wed Dec 26 11:25:12 2012 -0800
@@ -422,7 +422,7 @@
       double y, em, t;
       do {
         do {
-          y = tan(M_PI*RUNI);
+          y = tan (M_PI*RUNI);
           em = sq * y + lambda;
         } while (em < 0.0);
         em = floor (em);