Module Name:src
Committed By: mrg
Date: Wed Mar 20 20:19:31 UTC 2024
Modified Files:
src/usr.bin/audio/record: record.c
Log Message:
match message & conversion function name properly.
probably should make this into an array with two members.
To generate a diff of this c
Module Name:src
Committed By: mrg
Date: Wed Mar 20 20:19:31 UTC 2024
Modified Files:
src/usr.bin/audio/record: record.c
Log Message:
match message & conversion function name properly.
probably should make this into an array with two members.
To generate a diff of this c
Module Name:src
Committed By: mlelstv
Date: Sun Jan 9 06:33:13 UTC 2022
Modified Files:
src/usr.bin/audio/record: record.c
Log Message:
Let user gracefully abort recording with SIGINT.
To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 src/usr.bin/audio/recor
Module Name:src
Committed By: mlelstv
Date: Sun Jan 9 06:33:13 UTC 2022
Modified Files:
src/usr.bin/audio/record: record.c
Log Message:
Let user gracefully abort recording with SIGINT.
To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 src/usr.bin/audio/recor
On Thu, Sep 22, 2011 at 09:28:56PM +0200, Marc Balmer wrote:
>
> Am 22.09.2011 um 19:34 schrieb Christos Zoulas:
>
> > In article ,
> > Marc Balmer wrote:
> >>> if (outfd == STDOUT_FILENO)
> >>> return;
> >>>
> >>> - if (lseek(outfd, SEEK_SET, 0) < 0)
> >>> + if (lseek(outfd, (off_
Am 22.09.2011 um 19:34 schrieb Christos Zoulas:
> In article ,
> Marc Balmer wrote:
>>> if (outfd == STDOUT_FILENO)
>>> return;
>>>
>>> - if (lseek(outfd, SEEK_SET, 0) < 0)
>>> + if (lseek(outfd, (off_t)0, SEEK_SET) == (off_t)-1)
>>> err(1, "could not seek to st
In article ,
Marc Balmer wrote:
>> if (outfd == STDOUT_FILENO)
>> return;
>>
>> -if (lseek(outfd, SEEK_SET, 0) < 0)
>> +if (lseek(outfd, (off_t)0, SEEK_SET) == (off_t)-1)
>> err(1, "could not seek to start of file for header rewrite");
>
>Fwiw, this never c
Am 21.09.2011 um 16:32 schrieb Christos Zoulas:
> Module Name: src
> Committed By: christos
> Date: Wed Sep 21 14:32:14 UTC 2011
>
> Modified Files:
> src/usr.bin/audio/record: record.c
>
> Log Message:
> PR/45384: Henning Petersen: Swapped arguments in lseek
>
>
> To generate