Rename u_intXX_t to uintXX_t

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@17442 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-05-05 09:31:15 +00:00
parent 51476c2b24
commit 348b5d79c4
15 changed files with 44 additions and 44 deletions

View File

@@ -62,8 +62,8 @@ _krb5_crc_init_table(void)
flag = 1;
}
u_int32_t
_krb5_crc_update (const char *p, size_t len, u_int32_t res)
uint32_t
_krb5_crc_update (const char *p, size_t len, uint32_t res)
{
while (len--)
res = table[(res ^ *p++) & 0xFF] ^ (res >> 8);