diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-01-07 04:45:11 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:08:30 -0500 |
commit | 8b1512fc9bf73ade637c9f04974d8c01797d7bdc (patch) | |
tree | ec380ff6eabe4d9a58531283a62b4f84a37c2027 /source4/lib/talloc | |
parent | 11ce2cfd70df264c5c91b4daaa9a01c5abc673b0 (diff) | |
download | samba-8b1512fc9bf73ade637c9f04974d8c01797d7bdc.tar.gz samba-8b1512fc9bf73ade637c9f04974d8c01797d7bdc.tar.bz2 samba-8b1512fc9bf73ade637c9f04974d8c01797d7bdc.zip |
r4592: fixed typo from talloc testsuite fixup for the new syntax
(This used to be commit 1177200dd9392c088f5b009f55390ad31c367e5f)
Diffstat (limited to 'source4/lib/talloc')
-rw-r--r-- | source4/lib/talloc/testsuite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/talloc/testsuite.c b/source4/lib/talloc/testsuite.c index e7934a10f3..005474a2cc 100644 --- a/source4/lib/talloc/testsuite.c +++ b/source4/lib/talloc/testsuite.c @@ -645,7 +645,7 @@ static BOOL test_steal(void) talloc_free(root); - p1 = talloc_new(NULL); + p1 = talloc_size(NULL, 3); CHECK_SIZE(NULL, 3); talloc_free(p1); |