summaryrefslogtreecommitdiffstats
path: root/src/pulsecore
diff options
context:
space:
mode:
authorArun Raghavan <arun.raghavan@collabora.co.uk>2011-02-25 12:44:53 +0530
committerArun Raghavan <arun.raghavan@collabora.co.uk>2011-05-02 10:17:20 +0530
commitf4d1f2bdcfe5e598e926c190c80ec4c6d38dc9f4 (patch)
treebeb95144a8fc606184f6a1e1b538f17e54afac13 /src/pulsecore
parent881074907e04b23d713815fe11093e9081fe71e8 (diff)
sink: Trivial typo fix
Diffstat (limited to 'src/pulsecore')
-rw-r--r--src/pulsecore/sink.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/pulsecore/sink.h b/src/pulsecore/sink.h
index ef698813..b61ba333 100644
--- a/src/pulsecore/sink.h
+++ b/src/pulsecore/sink.h
@@ -161,7 +161,7 @@ struct pa_sink {
* s->real_volume and/or s->soft_volume so that they together
* match the actual hardware volume that will be set later in the
* write_volume callback. */
- void (*set_volume)(pa_sink *s); /* dito */
+ void (*set_volume)(pa_sink *s); /* ditto */
/* Sink drivers that set PA_SINK_SYNC_VOLUME must provide this
* callback. This callback is not used with sinks that do not set
@@ -174,30 +174,30 @@ struct pa_sink {
* not called automatically - it is the driver's responsibility to
* schedule that function to be called at the right times in the
* IO thread. */
- void (*write_volume)(pa_sink *s); /* dito */
+ void (*write_volume)(pa_sink *s); /* ditto */
/* Called when the mute setting is queried. A PA_SINK_MESSAGE_GET_MUTE
* message will also be sent. Called from IO thread if PA_SINK_SYNC_VOLUME
* flag is set otherwise from main loop context. If refresh_mute is FALSE
* neither this function is called nor a message is sent.*/
- void (*get_mute)(pa_sink *s); /* dito */
+ void (*get_mute)(pa_sink *s); /* ditto */
/* Called when the mute setting shall be changed. A PA_SINK_MESSAGE_SET_MUTE
* message will also be sent. Called from IO thread if PA_SINK_SYNC_VOLUME
* flag is set otherwise from main loop context. */
- void (*set_mute)(pa_sink *s); /* dito */
+ void (*set_mute)(pa_sink *s); /* ditto */
/* Called when a rewind request is issued. Called from IO thread
* context. */
- void (*request_rewind)(pa_sink *s); /* dito */
+ void (*request_rewind)(pa_sink *s); /* ditto */
/* Called when a the requested latency is changed. Called from IO
* thread context. */
- void (*update_requested_latency)(pa_sink *s); /* dito */
+ void (*update_requested_latency)(pa_sink *s); /* ditto */
/* Called whenever the port shall be changed. Called from main
* thread. */
- int (*set_port)(pa_sink *s, pa_device_port *port); /* dito */
+ int (*set_port)(pa_sink *s, pa_device_port *port); /* ditto */
/* Contains copies of the above data so that the real-time worker
* thread can work without access locking */