diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-12-15 22:51:31 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:29:21 -0500 |
commit | 90d106de8a73d395689b39e3e2c6ada5cfd46f61 (patch) | |
tree | 71693a82c0a3048267841f85436b935cbd1a2349 | |
parent | 0d2bedbdd7c5ee5b955a28629ef838d1a35edc45 (diff) | |
download | samba-90d106de8a73d395689b39e3e2c6ada5cfd46f61.tar.gz samba-90d106de8a73d395689b39e3e2c6ada5cfd46f61.tar.bz2 samba-90d106de8a73d395689b39e3e2c6ada5cfd46f61.zip |
r20195: fix typo
metze
(This used to be commit 9d06a4b6e22e18bdaa4383c7b9ab8af058c157c0)
-rw-r--r-- | source4/lib/talloc/talloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/talloc/talloc.c b/source4/lib/talloc/talloc.c index a23de0c8a7..15a44bd0d9 100644 --- a/source4/lib/talloc/talloc.c +++ b/source4/lib/talloc/talloc.c @@ -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); } |