From cf304d27481bed5f2d9bab53353223b87039161e Mon Sep 17 00:00:00 2001 From: Evan Nemerson Date: Tue, 19 Jun 2012 19:55:30 -0700 Subject: [PATCH] net: fix some argument names in documentation --- libs/gst/net/gstnettimepacket.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/gst/net/gstnettimepacket.c b/libs/gst/net/gstnettimepacket.c index f4667f69e3..97f10bab66 100644 --- a/libs/gst/net/gstnettimepacket.c +++ b/libs/gst/net/gstnettimepacket.c @@ -110,8 +110,8 @@ gst_net_time_packet_serialize (const GstNetTimePacket * packet) /** * gst_net_time_packet_receive: * @socket: socket to receive the time packet on - * @src_addr: (out): address of variable to return sender address - * @err: return address for a #GError, or NULL + * @src_address: (out): address of variable to return sender address + * @error: return address for a #GError, or NULL * * Receives a #GstNetTimePacket over a socket. Handles interrupted system * calls, but otherwise returns NULL on error. @@ -169,8 +169,8 @@ short_packet: * gst_net_time_packet_send: * @packet: the #GstNetTimePacket to send * @socket: socket to send the time packet on - * @dest_addr: address to send the time packet to - * @err: return address for a #GError, or NULL + * @dest_address: address to send the time packet to + * @error: return address for a #GError, or NULL * * Sends a #GstNetTimePacket over a socket. *