aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/pq_alsa.c4
-rw-r--r--src/pq_file.c4
-rw-r--r--src/pq_rtp.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/pq_alsa.c b/src/pq_alsa.c
index 3550221..50479e6 100644
--- a/src/pq_alsa.c
+++ b/src/pq_alsa.c
@@ -176,7 +176,7 @@ out_print:
* \param pq Processing Queue to add the ALSA input to
* \param[in] hwdev ALSA hardware device to use
* \param[in] blk_len block length to be read from device
- * \returns 0 on sucess; negative on error */
+ * \returns 0 on success; negative on error */
int
osmo_gapk_pq_queue_alsa_input(struct osmo_gapk_pq *pq, const char *hwdev, unsigned int blk_len)
{
@@ -190,7 +190,7 @@ osmo_gapk_pq_queue_alsa_input(struct osmo_gapk_pq *pq, const char *hwdev, unsign
* \param pq Processing Queue to add the ALSA output to
* \param[in] hwdev ALSA hardware device to use
* \param[in] blk_len block length to be written to device
- * \returns 0 on sucess; negative on error */
+ * \returns 0 on success; negative on error */
int
osmo_gapk_pq_queue_alsa_output(struct osmo_gapk_pq *pq, const char *hwdev, unsigned int blk_len)
{
diff --git a/src/pq_file.c b/src/pq_file.c
index 22dc9cd..d496eec 100644
--- a/src/pq_file.c
+++ b/src/pq_file.c
@@ -103,7 +103,7 @@ pq_queue_file_op(struct osmo_gapk_pq *pq, FILE *fh, unsigned int blk_len, int in
* \param pq Processing Queue to add the input file to
* \param[in] src caller-fopen()ed input file
* \param[in] blk_len block length to be read from file
- * \returns 0 on sucess; negative on error */
+ * \returns 0 on success; negative on error */
int
osmo_gapk_pq_queue_file_input(struct osmo_gapk_pq *pq, FILE *src, unsigned int blk_len)
{
@@ -117,7 +117,7 @@ osmo_gapk_pq_queue_file_input(struct osmo_gapk_pq *pq, FILE *src, unsigned int b
* \param pq Processing Queue to add the output file to
* \param[in] dst caller-fopen()ed output file
* \param[in] blk_len block length to be written to file
- * \returns 0 on sucess; negative on error */
+ * \returns 0 on success; negative on error */
int
osmo_gapk_pq_queue_file_output(struct osmo_gapk_pq *pq, FILE *dst, unsigned int blk_len)
{
diff --git a/src/pq_rtp.c b/src/pq_rtp.c
index 81eeb19..3a09ba7 100644
--- a/src/pq_rtp.c
+++ b/src/pq_rtp.c
@@ -116,7 +116,7 @@ pq_cb_rtp_input(void *_state, uint8_t *out, const uint8_t *in, unsigned int in_l
payload = buf + sizeof(struct rtp_hdr) + (rtph->csrc_count << 2);
payload_len = rv - sizeof(struct rtp_hdr) - (rtph->csrc_count << 2);
if (payload_len < 0) {
- rtp_err("non-existant RTP payload length %d\n", payload_len);
+ rtp_err("non-existent RTP payload length %d\n", payload_len);
return -1;
}