Fix two const warnings.
authorMichael Adam <obnox@samba.org>
Fri, 15 Feb 2008 12:12:38 +0000 (13:12 +0100)
committerMichael Adam <obnox@samba.org>
Fri, 15 Feb 2008 12:12:38 +0000 (13:12 +0100)
Michael
(This used to be commit 03db3bd0774e0435089eef15f88355133149d658)

source3/torture/smbiconv.c

index ad4d6b26ccbf940a41c2507361a1b68ec333c722..6e609aa851d0a0d954690ff10dbef7defb4a10ea 100644 (file)
@@ -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;