]> Git Repo - uclibc-ng.git/commitdiff
Don't try to return stuff from void funcs
authorEric Andersen <[email protected]>
Tue, 26 Feb 2002 10:43:39 +0000 (10:43 -0000)
committerEric Andersen <[email protected]>
Tue, 26 Feb 2002 10:43:39 +0000 (10:43 -0000)
libcrypt/crypt.c

index 9c41bdaecc6f8342e91e196ffe559a259786b47e..84c7678c2d15c114ade4b07d051afec4a931f9c6 100644 (file)
@@ -34,11 +34,11 @@ extern char * crypt(const char *key, const char *salt)
 
 extern void setkey(const char *key)
 {
-    return setkey_r(key, &__crypt_data);
+    setkey_r(key, &__crypt_data);
 }
 
 extern void encrypt(char *block, int edflag)
 {
-    return encrypt_r(block, edflag, &__crypt_data);
+    encrypt_r(block, edflag, &__crypt_data);
 }
 
This page took 0.027537 seconds and 4 git commands to generate.