changeset 19608:47d778e6a518

* audiodevinfo.cc: Minor style fixes.
author John W. Eaton <jwe@octave.org>
date Tue, 13 Jan 2015 22:38:15 -0500
parents 2aaf6077eb3c
children 7f5006dfa2eb
files libinterp/dldfcn/audiodevinfo.cc
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/dldfcn/audiodevinfo.cc	Tue Jan 13 22:33:02 2015 -0500
+++ b/libinterp/dldfcn/audiodevinfo.cc	Tue Jan 13 22:38:15 2015 -0500
@@ -591,8 +591,8 @@
   // a second copy of the data array to be made.
 
   const ColumnVector sound_l = sound.column (0);
-  const ColumnVector sound_r = (sound.columns () == 1)
-                               ? sound_l : sound.column (1);
+  const ColumnVector sound_r = (sound.columns () == 1
+                                ? sound_l : sound.column (1));
 
   const double *p_l = sound_l.data ();
   const double *p_r = sound_r.data ();
@@ -1913,8 +1913,8 @@
 
   if (nargin > 0)
     {
-      bool is_function = args(0).is_string () || args(0).is_function_handle ()
-                         || args(0).is_inline_function ();
+      bool is_function = (args(0).is_string () || args(0).is_function_handle ()
+                          || args(0).is_inline_function ());
 
       if (is_function)
         {
@@ -2570,8 +2570,8 @@
       return retval;
     }
 
-  bool is_function = args(0).is_string () || args(0).is_function_handle ()
-                     || args(0).is_inline_function ();
+  bool is_function = (args(0).is_string () || args(0).is_function_handle ()
+                      || args(0).is_inline_function ());
 
   if (is_function)
     {