From a091b31e83aaebf8c2d3a9c0a317687182307f2e Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Thu, 2 Sep 2004 19:13:03 +0000 Subject: [PATCH] Fixed gcc warning. --- src/smblib/smblib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smblib/smblib.c b/src/smblib/smblib.c index e7d43c141c..34915f91c8 100644 --- a/src/smblib/smblib.c +++ b/src/smblib/smblib.c @@ -2567,7 +2567,7 @@ hash_t* SMBCALL smb_hash(ulong msgnum, ulong t, unsigned source, unsigned flags hash_t* SMBCALL smb_hashstr(ulong msgnum, ulong t, unsigned source, unsigned flags ,const char* str) { - uchar* p=(uchar*)str; + char* p=(uchar*)str; hash_t* hash; if(flags&SMB_HASH_PROC_MASK) { /* string pre-processing */ -- GitLab