mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-02 04:59:39 -05:00
Protoize cnvt_str2int()
This commit is contained in:
parent
d8ac5cabb4
commit
47093d0617
1 changed files with 2 additions and 5 deletions
|
|
@ -41,7 +41,7 @@ static STRDISP syslog_types[] = {
|
|||
NULL
|
||||
};
|
||||
|
||||
static int cnvt_str2int();
|
||||
static int cnvt_str2int( char *, STRDISP_P, int );
|
||||
|
||||
#endif /* LOG_LOCAL4 */
|
||||
|
||||
|
|
@ -337,10 +337,7 @@ destroy:
|
|||
*/
|
||||
|
||||
static int
|
||||
cnvt_str2int (stringVal, dispatcher, defaultVal)
|
||||
char *stringVal;
|
||||
STRDISP_P dispatcher;
|
||||
int defaultVal;
|
||||
cnvt_str2int( char *stringVal, STRDISP_P dispatcher, int defaultVal )
|
||||
{
|
||||
int retVal = defaultVal;
|
||||
STRDISP_P disp;
|
||||
|
|
|
|||
Loading…
Reference in a new issue