1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Got rid of some more compiler warnings by introducing function prototypes

which were missing and by casting pointers to the expected types.


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15150 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2006-09-25 15:12:47 +00:00
parent d5bfee3917
commit 9ce2ba234f
14 changed files with 66 additions and 16 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: usergroup_crypt.c,v 1.5 2006-09-22 09:02:51 obarthel Exp $
* $Id: usergroup_crypt.c,v 1.6 2006-09-25 15:12:47 obarthel Exp $
*
* :ts=4
*
@ -79,7 +79,7 @@ crypt(const char *key,const char *salt)
#endif /* CHECK_FOR_NULL_POINTERS */
PROFILE_OFF();
result = (char *)__crypt((STRPTR)key,(STRPTR)salt);
result = (char *)__crypt((UBYTE *)key,(UBYTE *)salt);
PROFILE_ON();
SHOWSTRING(result);