]> code.delx.au - pulseaudio/blobdiff - src/tests/sync-playback.c
fix the ever-popular 'the the' typo
[pulseaudio] / src / tests / sync-playback.c
index bb64a91fc431c42c64f42d022eed40bc53b21ae4..df1fa4534c7c491e18dffc371dba39018faf4185 100644 (file)
 #endif
 
 #include <signal.h>
-#include <string.h>
 #include <errno.h>
 #include <unistd.h>
 #include <assert.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <getopt.h>
 #include <math.h>
 
 #include <pulse/pulseaudio.h>
@@ -55,7 +53,7 @@ static const pa_sample_spec sample_spec = {
 static const pa_buffer_attr buffer_attr = {
     .maxlength = SAMPLE_HZ*sizeof(float)*NSTREAMS, /* exactly space for the entire play time */
     .tlength = (uint32_t) -1,
-    .prebuf = 0, /* Setting prebuf to 0 guarantees us the the streams will run synchronously, no matter what */
+    .prebuf = 0, /* Setting prebuf to 0 guarantees us the streams will run synchronously, no matter what */
     .minreq = (uint32_t) -1,
     .fragsize = 0
 };