summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/portaudio/test/patest_underflow.c
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/portaudio/test/patest_underflow.c')
-rw-r--r--3rdparty/portaudio/test/patest_underflow.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/3rdparty/portaudio/test/patest_underflow.c b/3rdparty/portaudio/test/patest_underflow.c
index e1726a613d9..96216a69171 100644
--- a/3rdparty/portaudio/test/patest_underflow.c
+++ b/3rdparty/portaudio/test/patest_underflow.c
@@ -1,9 +1,9 @@
/** @file patest_underflow.c
- @ingroup test_src
- @brief Simulate an output buffer underflow condition.
- Tests whether the stream can be stopped when underflowing buffers.
- @author Ross Bencina <rossb@audiomulch.com>
- @author Phil Burk <philburk@softsynth.com>
+ @ingroup test_src
+ @brief Simulate an output buffer underflow condition.
+ Tests whether the stream can be stopped when underflowing buffers.
+ @author Ross Bencina <rossb@audiomulch.com>
+ @author Phil Burk <philburk@softsynth.com>
*/
/*
* $Id$
@@ -33,13 +33,13 @@
*/
/*
- * The text above constitutes the entire PortAudio license; however,
+ * The text above constitutes the entire PortAudio license; however,
* the PortAudio community also makes the following non-binding requests:
*
* Any person wishing to distribute modifications to the Software is
* requested to send the modifications to the original developer so that
- * they can be incorporated into the canonical version. It is also
- * requested that these non-binding requests be included along with the
+ * they can be incorporated into the canonical version. It is also
+ * requested that these non-binding requests be included along with the
* license above.
*/
@@ -116,7 +116,7 @@ int main(void)
data.left_phase = data.right_phase = data.sleepTime = 0;
err = Pa_Initialize();
if( err != paNoError ) goto error;
-
+
outputParameters.device = Pa_GetDefaultOutputDevice(); /* default output device */
if (outputParameters.device == paNoDevice) {
fprintf(stderr,"Error: No default output device.\n");
@@ -155,7 +155,7 @@ int main(void)
return err;
error:
Pa_Terminate();
- fprintf( stderr, "An error occured while using the portaudio stream\n" );
+ fprintf( stderr, "An error occurred while using the portaudio stream\n" );
fprintf( stderr, "Error number: %d\n", err );
fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
return err;