const and char cleanup

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@3699 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1997-10-29 01:30:15 +00:00
parent 225b823df0
commit c145f0f8e4
6 changed files with 15 additions and 11 deletions

View File

@@ -72,7 +72,7 @@ emem_store(krb5_storage *sp, void *data, size_t size)
return 0;
s->size = sz;
s->base = base;
s->ptr = (char*)base + off;
s->ptr = (unsigned char*)base + off;
}
memmove(s->ptr, data, size);
sp->seek(sp, size, SEEK_CUR);