From a10e6183aa05f26583dfe0fc7037d9190b57a69d Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 15 Feb 2008 13:12:38 +0100 Subject: Fix two const warnings. Michael (This used to be commit 03db3bd0774e0435089eef15f88355133149d658) --- source3/torture/smbiconv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/torture/smbiconv.c') 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; -- cgit