summaryrefslogtreecommitdiff
path: root/src/seq
diff options
context:
space:
mode:
authorClemens Ladisch <clemens@ladisch.de>2005-05-02 07:42:52 +0000
committerClemens Ladisch <clemens@ladisch.de>2005-05-02 07:42:52 +0000
commitcf73143ce8ff932dd89536928b55681275de2d8f (patch)
tree62f970295c827c80286a51ed392362f52af16e57 /src/seq
parent0b4e5e095d09a9721b694104ec33511b9662eaef (diff)
fix snd_seq_query_next_client documentation
Fix snd_seq_query_next_client's documentation -- no name matching is actually done by ALSA.
Diffstat (limited to 'src/seq')
-rw-r--r--src/seq/seq.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/seq/seq.c b/src/seq/seq.c
index 8dfaf482..ebcec311 100644
--- a/src/seq/seq.c
+++ b/src/seq/seq.c
@@ -1682,17 +1682,15 @@ int snd_seq_set_client_info(snd_seq_t *seq, snd_seq_client_info_t *info)
}
/**
- * \brief query the next matching client
+ * \brief query the next client
* \param seq sequencer handle
* \param info query pattern and result
*
- * Queries the next matching client with the given condition in
- * info argument.
+ * Queries the next client.
* The search begins at the client with an id one greater than
* client field in info.
- * If name field in info is not empty, the client name is compared.
- * If a matching client is found, its attributes are stored o
- * info and returns zero.
+ * If a client is found, its attributes are stored in info,
+ * and zero is returned.
* Otherwise returns a negative error code.
*
* \sa snd_seq_get_any_client_info()