From 931b9ee0300f54e4de6388b6db24c4f927b8e7d8 Mon Sep 17 00:00:00 2001 From: dteirney Date: Wed, 20 Oct 2010 09:35:50 +0000 Subject: Cosmetic. Fix up comments and error messages to reflect correct long or long long methods. git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34874 568bbfeb-2a22-0410-94d2-cc84cf5bfa90 --- xbmc/lib/cmyth/libcmyth/socket.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xbmc/lib/cmyth/libcmyth/socket.c b/xbmc/lib/cmyth/libcmyth/socket.c index 2b5e4ee5c5..44a403d5dc 100644 --- a/xbmc/lib/cmyth/libcmyth/socket.c +++ b/xbmc/lib/cmyth/libcmyth/socket.c @@ -514,7 +514,7 @@ cmyth_rcv_ulong(cmyth_conn_t conn, int *err, unsigned long *buf, * * Description * - * Receive a long long (signed 64 bit) integer token from a list of + * Receive a long (signed 32 bit) integer token from a list of * tokens in a MythTV Protocol message. Tokens in MythTV Protocol * messages are separated by the string: []:[] or terminated by * running out of message. Up to 'count' Bytes will be consumed from @@ -585,7 +585,7 @@ cmyth_rcv_long(cmyth_conn_t conn, int *err, long *buf, int count) */ if (val > (unsigned long)limit) { cmyth_dbg(CMYTH_DBG_ERROR, - "%s: long long out of range: '%s'\n", + "%s: long out of range: '%s'\n", __FUNCTION__, num); *err = ERANGE; return consumed; @@ -842,7 +842,7 @@ cmyth_rcv_short(cmyth_conn_t conn, int *err, short *buf, int count) * * Description * - * Receive a long (signed 32 bit) integer token from a list of tokens + * Receive a long long (signed 64 bit) integer token from a list of tokens * in a MythTV Protocol message. Tokens in MythTV Protocol messages * are separated by the string: []:[] or terminated by running out of * message. Up to 'count' Bytes will be consumed from the socket -- cgit v1.2.3