diff options
author | Michael Adam <obnox@samba.org> | 2008-02-15 13:12:38 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-02-15 13:12:38 +0100 |
commit | a10e6183aa05f26583dfe0fc7037d9190b57a69d (patch) | |
tree | b22b2178e4a2429e16f99c1fa4e6ff50c10d1150 /source3/torture | |
parent | 8a63e1322581f0adf842d92b8e57919dab7d459b (diff) | |
download | samba-a10e6183aa05f26583dfe0fc7037d9190b57a69d.tar.gz samba-a10e6183aa05f26583dfe0fc7037d9190b57a69d.tar.bz2 samba-a10e6183aa05f26583dfe0fc7037d9190b57a69d.zip |
Fix two const warnings.
Michael
(This used to be commit 03db3bd0774e0435089eef15f88355133149d658)
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/smbiconv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/torture/smbiconv.c b/source3/torture/smbiconv.c index ad4d6b26cc..6e609aa851 100644 --- a/source3/torture/smbiconv.c +++ b/source3/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; |