1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r20195: fix typo

metze
This commit is contained in:
Stefan Metzmacher 2006-12-15 22:51:31 +00:00 committed by Gerald (Jerry) Carter
parent ee47b40441
commit 9d06a4b6e2

View File

@ -771,7 +771,7 @@ void *_talloc_realloc(const void *context, void *ptr, size_t size, const char *n
return NULL;
}
/* realloc(NULL) is equavalent to malloc() */
/* realloc(NULL) is equivalent to malloc() */
if (ptr == NULL) {
return _talloc_named_const(context, size, name);
}