lint fixes
authorJohn Kohl <jtkohl@mit.edu>
Wed, 7 Feb 1990 16:42:08 +0000 (16:42 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Wed, 7 Feb 1990 16:42:08 +0000 (16:42 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@300 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/kdb/decrypt_key.c

index 53ffa80157056241db29f010ae318f43c3b3f568..806cbc0a55c1db1daf8adf16d1ae6f87ee520c3b 100644 (file)
@@ -56,7 +56,8 @@ krb5_encrypt_block *eblock;
     }
     /* shift key down to beginning of contents, and ignore extra wasted
        space */
-    bcopy(out->contents, ((krb5_pointer) out->contents ) + sizeof(out->length),
+    bcopy((char *)out->contents,
+         ((char *) out->contents ) + sizeof(out->length),
          out->length);
     return retval;
 }