* fhandler.cc (fhandler_base::puts_readahead): Remove default parameter
setting. Newer gcc's complain about this. (fhandler_base::set_readahead_valid): Ditto. * fhandler_dsp.cc (Audio::open): Ditto. (fhandler_dev_dsp::open): Ditto.
This commit is contained in:
parent
7416292611
commit
aa6df8d7d4
|
@ -1,3 +1,11 @@
|
|||
2002-02-19 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* fhandler.cc (fhandler_base::puts_readahead): Remove default parameter
|
||||
setting. Newer gcc's complain about this.
|
||||
(fhandler_base::set_readahead_valid): Ditto.
|
||||
* fhandler_dsp.cc (Audio::open): Ditto.
|
||||
(fhandler_dev_dsp::open): Ditto.
|
||||
|
||||
2002-02-19 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* fork.cc (fork_parent): Use sec_user_nih to control process/thread
|
||||
|
|
|
@ -49,7 +49,7 @@ fhandler_base::operator =(fhandler_base &x)
|
|||
}
|
||||
|
||||
int
|
||||
fhandler_base::puts_readahead (const char *s, size_t len = (size_t) -1)
|
||||
fhandler_base::puts_readahead (const char *s, size_t len)
|
||||
{
|
||||
int success = 1;
|
||||
while ((*s || (len != (size_t) -1 && len--))
|
||||
|
@ -98,7 +98,7 @@ fhandler_base::peek_readahead (int queryput)
|
|||
}
|
||||
|
||||
void
|
||||
fhandler_base::set_readahead_valid (int val, int ch = -1)
|
||||
fhandler_base::set_readahead_valid (int val, int ch)
|
||||
{
|
||||
if (!val)
|
||||
ralen = raixget = raixput = 0;
|
||||
|
|
|
@ -86,7 +86,7 @@ Audio::~Audio ()
|
|||
}
|
||||
|
||||
bool
|
||||
Audio::open (int rate, int bits, int channels, bool bCallback = false)
|
||||
Audio::open (int rate, int bits, int channels, bool bCallback)
|
||||
{
|
||||
WAVEFORMATEX format;
|
||||
int nDevices = waveOutGetNumDevs ();
|
||||
|
@ -430,7 +430,7 @@ fhandler_dev_dsp::~fhandler_dev_dsp ()
|
|||
}
|
||||
|
||||
int
|
||||
fhandler_dev_dsp::open (path_conv *, int flags, mode_t mode = 0)
|
||||
fhandler_dev_dsp::open (path_conv *, int flags, mode_t mode)
|
||||
{
|
||||
// currently we only support writing
|
||||
if ((flags & (O_WRONLY | O_RDONLY | O_RDWR)) != O_WRONLY)
|
||||
|
|
Loading…
Reference in New Issue