riched20: Cast-qual warning fix.

This commit is contained in:
Andrew Talbot 2006-09-25 20:02:10 +01:00 committed by Alexandre Julliard
parent 4e9087a670
commit b038fa18ee
1 changed files with 4 additions and 4 deletions

View File

@ -66,7 +66,7 @@ static void ReadPictGroup (RTF_Info *);
static void ReadObjGroup (RTF_Info *);
static void LookupInit (void);
static void Lookup (RTF_Info *, char *);
static int Hash (char*);
static int Hash (const char *);
static void CharAttr(RTF_Info *info);
static void CharSet(RTF_Info *info);
@ -2350,7 +2350,7 @@ static void LookupInit(void)
for (rp = rtfKey; rp->rtfKStr != NULL; rp++) {
int index;
rp->rtfKHash = Hash ((char*)rp->rtfKStr);
rp->rtfKHash = Hash (rp->rtfKStr);
index = rp->rtfKHash % (RTF_KEY_COUNT * 2);
if (!rtfHashTable[index].count)
rtfHashTable[index].value = RTFAlloc(sizeof(RTFKey *));
@ -2398,7 +2398,7 @@ static void Lookup(RTF_Info *info, char *s)
* Compute hash value of symbol
*/
static int Hash(char *s)
static int Hash(const char *s)
{
char c;
int val = 0;