diff options
author | Volker Lendecke <vl@samba.org> | 2013-09-04 08:22:08 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-09-05 09:16:22 -0700 |
commit | 46131cb8023a883238b67e668be2afbc4adcf1f5 (patch) | |
tree | 3407c01f5f8d318cadf9471d1da6f3679ca648f8 | |
parent | 6096a59d6bc0fd5f77794e40d903eaafecf9407f (diff) | |
download | samba-46131cb8023a883238b67e668be2afbc4adcf1f5.tar.gz samba-46131cb8023a883238b67e668be2afbc4adcf1f5.tar.bz2 samba-46131cb8023a883238b67e668be2afbc4adcf1f5.zip |
torture3: Fix a const warning
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
-rw-r--r-- | source3/torture/torture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 2d1a107b34..2d7e87f3e9 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -8496,7 +8496,7 @@ static bool run_local_string_to_sid(int dummy) { return true; } -static bool sid_to_string_test(char *expected) { +static bool sid_to_string_test(const char *expected) { char *str; bool res = true; struct dom_sid sid; |