diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-03-15 19:27:17 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-03-15 19:27:17 +0000 |
commit | 7baa6c18e7ea33c0783aa227838544a53393a939 (patch) | |
tree | 2828012c446780bfaa5276fa3ab23be4a975e52d /tests/sched | |
parent | 84f49e604dc2940a8f58de9f89a27b8dcab3498f (diff) |
don't mix tabs and spaces
Original commit message from CVS:
don't mix tabs and spaces
Diffstat (limited to 'tests/sched')
-rw-r--r-- | tests/sched/interrupt1.c | 2 | ||||
-rw-r--r-- | tests/sched/interrupt2.c | 2 | ||||
-rw-r--r-- | tests/sched/interrupt3.c | 2 | ||||
-rw-r--r-- | tests/sched/runxml.c | 4 | ||||
-rw-r--r-- | tests/sched/sched-stress.c | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/tests/sched/interrupt1.c b/tests/sched/interrupt1.c index e33df4304..66d6d6844 100644 --- a/tests/sched/interrupt1.c +++ b/tests/sched/interrupt1.c @@ -7,7 +7,7 @@ main (int argc, char *argv[]) gst_init (&argc, &argv); - free (malloc (8)); /* -lefence */ + free (malloc (8)); /* -lefence */ pipeline = gst_pipeline_new ("pipeline"); diff --git a/tests/sched/interrupt2.c b/tests/sched/interrupt2.c index df2b97929..3907e2942 100644 --- a/tests/sched/interrupt2.c +++ b/tests/sched/interrupt2.c @@ -7,7 +7,7 @@ main (int argc, char *argv[]) gst_init (&argc, &argv); - free (malloc (8)); /* -lefence */ + free (malloc (8)); /* -lefence */ pipeline = gst_pipeline_new ("pipeline"); diff --git a/tests/sched/interrupt3.c b/tests/sched/interrupt3.c index 937b1fd6a..6b05434ea 100644 --- a/tests/sched/interrupt3.c +++ b/tests/sched/interrupt3.c @@ -8,7 +8,7 @@ main (int argc, char *argv[]) gst_init (&argc, &argv); - free (malloc (8)); /* -lefence */ + free (malloc (8)); /* -lefence */ pipeline = gst_pipeline_new ("pipeline"); diff --git a/tests/sched/runxml.c b/tests/sched/runxml.c index 753490761..ef3db5a24 100644 --- a/tests/sched/runxml.c +++ b/tests/sched/runxml.c @@ -57,7 +57,7 @@ main (int argc, char *argv[]) src = gst_bin_get_by_name (GST_BIN (bin), "fakesrc"); if (src) { g_signal_connect (G_OBJECT (src), "handoff", - G_CALLBACK (buffer_handoff_src), bin); + G_CALLBACK (buffer_handoff_src), bin); } else { g_print ("could not find src element\n"); exit (-1); @@ -66,7 +66,7 @@ main (int argc, char *argv[]) sink = gst_bin_get_by_name (GST_BIN (bin), "fakesink"); if (sink) { g_signal_connect (G_OBJECT (sink), "handoff", - G_CALLBACK (buffer_handoff_sink), bin); + G_CALLBACK (buffer_handoff_sink), bin); } else { g_print ("could not find sink element\n"); exit (-1); diff --git a/tests/sched/sched-stress.c b/tests/sched/sched-stress.c index 34981598f..b058a41a6 100644 --- a/tests/sched/sched-stress.c +++ b/tests/sched/sched-stress.c @@ -10,7 +10,7 @@ main (int argc, char *argv[]) gst_init (&argc, &argv); - free (malloc (8)); /* -lefence */ + free (malloc (8)); /* -lefence */ for (i = 0; i < TAILLE; i++) { bin = gst_pipeline_new ("pipeline"); |