More const cleanup.

svn path=/trunk/; revision=21535
This commit is contained in:
Guy Harris 2007-04-23 18:18:08 +00:00
parent cdb59eed63
commit adcccbcdee
1 changed files with 2 additions and 1 deletions

View File

@ -884,7 +884,8 @@ guint8_pbrk(const guint8* haystack, size_t haystacklen, const guint8 *needles)
{
const guint8 *b;
int i;
guint8 item, *needlep, needle;
guint8 item, needle;
const guint8 *needlep;
for (b = haystack, i = 0; (guint) i < haystacklen; i++, b++) {
item = *b;