From: Michael Adam Date: Fri, 15 Feb 2008 12:12:38 +0000 (+0100) Subject: Fix two const warnings. X-Git-Tag: samba-3.2.0pre2~37^2~162^2~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=03db3bd0774e0435089eef15f88355133149d658;p=thirdparty%2Fsamba.git Fix two const warnings. Michael --- 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;