aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordteirney <dteirney@svn>2010-10-20 09:35:50 +0000
committerdteirney <dteirney@svn>2010-10-20 09:35:50 +0000
commit931b9ee0300f54e4de6388b6db24c4f927b8e7d8 (patch)
tree16f703de56410c627111b11903fe33769536a778
parent830492e8456dfe620497f9709ccbcb24a8e6b6db (diff)
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
-rw-r--r--xbmc/lib/cmyth/libcmyth/socket.c6
1 files 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