fix call to memset()
authorJohn Carr <jfc@mit.edu>
Tue, 27 Nov 1990 17:58:44 +0000 (17:58 +0000)
committerJohn Carr <jfc@mit.edu>
Tue, 27 Nov 1990 17:58:44 +0000 (17:58 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1500 dc483132-0cff-0310-8789-dd5450dbe970

src/clients/kinit/kinit.c

index f75e1dd1f7812c586192df04571926a739cddce5..db1a8847c1baa38f3a3e9719d709667bcead16b5 100644 (file)
@@ -129,7 +129,7 @@ main(argc, argv)
        exit(1);
     }
 
-    memset(&my_creds, 0, sizeof(my_creds));
+    memset((char *)&my_creds, 0, sizeof(my_creds));
     
     my_creds.client = me;
     my_creds.server = server;