summaryrefslogtreecommitdiff
path: root/hdlcverify.c
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>2008-11-16 17:55:30 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2008-11-16 17:55:30 +0000
commit2a3f841852af6f57374a86a675818f563f756962 (patch)
treeb4b77e986dbe28355959223f62a904926a5979b7 /hdlcverify.c
parenta45f2b1de28843e9f690da155d3b04cdee79c852 (diff)
Fix a compilation warning about signedness
git-svn-id: http://svn.asterisk.org/svn/dahdi/tools/trunk@5309 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'hdlcverify.c')
-rw-r--r--hdlcverify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hdlcverify.c b/hdlcverify.c
index 9299fcb..604ab26 100644
--- a/hdlcverify.c
+++ b/hdlcverify.c
@@ -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;