summaryrefslogtreecommitdiffstats
path: root/source/torture
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-02-15 13:12:38 +0100
committerMichael Adam <obnox@samba.org>2008-02-15 13:12:38 +0100
commit03db3bd0774e0435089eef15f88355133149d658 (patch)
tree143cc0d4a5aadd4c5d22e9d5d956ae39bf498f79 /source/torture
parentbdc00a05b95a7a629a6cbf2af21760b6ff874bd9 (diff)
downloadsamba-03db3bd0774e0435089eef15f88355133149d658.tar.gz
samba-03db3bd0774e0435089eef15f88355133149d658.tar.xz
samba-03db3bd0774e0435089eef15f88355133149d658.zip
Fix two const warnings.
Michael
Diffstat (limited to 'source/torture')
-rw-r--r--source/torture/smbiconv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/torture/smbiconv.c b/source/torture/smbiconv.c
index ad4d6b26ccb..6e609aa851d 100644
--- a/source/torture/smbiconv.c
+++ b/source/torture/smbiconv.c
@@ -168,8 +168,8 @@ process_fd (smb_iconv_t cd, int fd, FILE *output)
int main(int argc, char *argv[])
{
const char *file = NULL;
- char *from = "";
- char *to = "";
+ const char *from = "";
+ const char *to = "";
char *output = NULL;
const char *preload_modules[] = {NULL, NULL};
FILE *out = stdout;