diff libinterp/dldfcn/audiodevinfo.cc @ 19973:7aaf756b1532

use "!", not "not" * octave-gui.cc, audiodevinfo.cc: Avoid using "not" operator.
author John W. Eaton <jwe@octave.org>
date Thu, 19 Mar 2015 14:32:40 -0400
parents 19755f4fc851
children 075a5e2e1ba5
line wrap: on
line diff
--- a/libinterp/dldfcn/audiodevinfo.cc	Thu Mar 19 11:48:45 2015 -0700
+++ b/libinterp/dldfcn/audiodevinfo.cc	Thu Mar 19 14:32:40 2015 -0400
@@ -282,7 +282,7 @@
               return retval;
             }
         }
-      if (not found)
+      if (! found)
         error ("audiodevinfo: no device meeting the specified criteria found");
     }
   else if (nargin == 3)
@@ -1250,7 +1250,7 @@
   PaError err;
   set_sample_number (0);
   reset_end_sample ();
-  if (not Pa_IsStreamStopped (get_stream ()))
+  if (! Pa_IsStreamStopped (get_stream ()))
     {
       err = Pa_AbortStream (get_stream ());
       if (err != paNoError)
@@ -1877,7 +1877,7 @@
     return;
 
   PaError err;
-  if (not Pa_IsStreamStopped (get_stream ()))
+  if (! Pa_IsStreamStopped (get_stream ()))
     {
       err = Pa_AbortStream (get_stream ());
       if (err != paNoError)