summaryrefslogtreecommitdiffstats
path: root/src/pulsecore
diff options
context:
space:
mode:
authorTanu Kaskinen <tanuk@iki.fi>2009-05-27 16:57:06 +0300
committerTanu Kaskinen <tanuk@iki.fi>2010-01-06 10:48:32 +0200
commitcc82553d7e5ce3602806127fef8090f89d573238 (patch)
tree188d5edf61be7217dd5376012312c3e9a16b66cd /src/pulsecore
parentaa9348441db34b787784711f19882d6c42fa315d (diff)
idxset: Fix _get_by_data() comment.
Diffstat (limited to 'src/pulsecore')
-rw-r--r--src/pulsecore/idxset.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/idxset.h b/src/pulsecore/idxset.h
index d1e68c5c..2d01fb47 100644
--- a/src/pulsecore/idxset.h
+++ b/src/pulsecore/idxset.h
@@ -65,7 +65,7 @@ int pa_idxset_put(pa_idxset*s, void *p, uint32_t *idx);
/* Get the entry by its idx */
void* pa_idxset_get_by_index(pa_idxset*s, uint32_t idx);
-/* Get the entry by its data. The idx is returned in *index */
+/* Get the entry by its data. The index is returned in *idx */
void* pa_idxset_get_by_data(pa_idxset*s, const void *p, uint32_t *idx);
/* Similar to pa_idxset_get_by_index(), but removes the entry from the idxset. */