set.c: SetNoisyBool() constify and add prototype
This commit is contained in:
parent
2b69b07860
commit
f22ecda44a
|
|
@ -98,7 +98,7 @@ SetNoisyInt(parm,valueS,file)
|
|||
int
|
||||
SetNoisyBool(parm,valueS,file)
|
||||
bool *parm;
|
||||
char *valueS;
|
||||
const char *valueS;
|
||||
FILE *file;
|
||||
{
|
||||
int n, which, result = -2;
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ extern gzFile PaLockZOpen(const char *file, const char *mode, const char *ext, c
|
|||
extern char *PaCheckCompressed(const char *filename);
|
||||
#endif
|
||||
|
||||
extern int SetNoisyBool(bool *, char *, FILE *);
|
||||
extern int SetNoisyBool(bool *parm, const char *valueS, FILE *file);
|
||||
|
||||
#ifdef FILE_LOCKS
|
||||
extern FILE *flock_open();
|
||||
|
|
|
|||
Loading…
Reference in New Issue