diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-11-16 15:14:43 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-11-16 07:16:04 +0000 |
commit | 896d1bdca2fe094d2aef4439903d8e66143d8f64 (patch) | |
tree | 265b045a9b2ca3999cfe1f3fd09713b4a4f7fcbd | |
parent | 2421c0dcfb80665cbb4469767c5bc67b248b94e0 (diff) | |
download | samba-896d1bdca2fe094d2aef4439903d8e66143d8f64.tar.gz samba-896d1bdca2fe094d2aef4439903d8e66143d8f64.tar.bz2 samba-896d1bdca2fe094d2aef4439903d8e66143d8f64.zip |
s4-spoolss: fixed warning in call to torture_warning()
-rw-r--r-- | source4/torture/rpc/spoolss.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/rpc/spoolss.c b/source4/torture/rpc/spoolss.c index 6530a85495..453c79724e 100644 --- a/source4/torture/rpc/spoolss.c +++ b/source4/torture/rpc/spoolss.c @@ -3334,8 +3334,8 @@ static bool test_DoPrintTest_check_jobs(struct torture_context *tctx, if (strequal(ginfo.info1.document_name, document_name)) { torture_warning(tctx, - talloc_asprintf(tctx, "document_name did *NOT* change from '%s' to '%s'\n", - document_name, new_document_name)); + "document_name did *NOT* change from '%s' to '%s'\n", + document_name, new_document_name); } } |