[dahdi-commits] tzafrir: tools/trunk r5309 - /tools/trunk/hdlcverify.c

SVN commits to the DAHDI project dahdi-commits at lists.digium.com
Sun Nov 16 11:55:30 CST 2008


Author: tzafrir
Date: Sun Nov 16 11:55:30 2008
New Revision: 5309

URL: http://svn.digium.com/view/dahdi?view=rev&rev=5309
Log:
Fix a compilation warning about signedness

Modified:
    tools/trunk/hdlcverify.c

Modified: tools/trunk/hdlcverify.c
URL: http://svn.digium.com/view/dahdi/tools/trunk/hdlcverify.c?view=diff&rev=5309&r1=5308&r2=5309
==============================================================================
--- tools/trunk/hdlcverify.c (original)
+++ tools/trunk/hdlcverify.c Sun Nov 16 11:55:30 2008
@@ -23,7 +23,7 @@
 
 #include "dahdi_tools_version.h"
 
-int myread(int fd, char *buf, int len)
+int myread(int fd, unsigned char *buf, int len)
 {
 	int sofar;
 	int res;




More information about the dahdi-commits mailing list