1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

r962: convert 'unsigned' and 'unsigned int' to uint_t

metze
This commit is contained in:
Stefan Metzmacher
2004-06-01 10:12:52 +00:00
committed by Gerald (Jerry) Carter
parent 9f914e4af9
commit 57151e80eb
52 changed files with 164 additions and 166 deletions

View File

@ -982,7 +982,7 @@ void dump_data_pw(const char *msg, const uint8_t * data, size_t len)
/* see if a range of memory is all zero. A NULL pointer is considered
to be all zero */
BOOL all_zero(const char *ptr, unsigned size)
BOOL all_zero(const char *ptr, uint_t size)
{
int i;
if (!ptr) return True;