diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-11-18 17:06:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:15:54 -0500 |
commit | e37200a82e171b663d51ec67bd20cf4433235cdd (patch) | |
tree | 07eef8f1af3de8c67464306142ae9e608bea687f /source3/lib/talloc | |
parent | 5e48602456f50cc3e261acfb005e6ee28231f64c (diff) | |
download | samba-e37200a82e171b663d51ec67bd20cf4433235cdd.tar.gz samba-e37200a82e171b663d51ec67bd20cf4433235cdd.tar.bz2 samba-e37200a82e171b663d51ec67bd20cf4433235cdd.zip |
r19774: Fix typo
(This used to be commit 842599a7fd1217b498dc2d241d39ed604cf0da7d)
Diffstat (limited to 'source3/lib/talloc')
-rw-r--r-- | source3/lib/talloc/talloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/talloc/talloc.c b/source3/lib/talloc/talloc.c index bae1942f43..91e02d7e1e 100644 --- a/source3/lib/talloc/talloc.c +++ b/source3/lib/talloc/talloc.c @@ -773,7 +773,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); } |