mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
read() and write() return ssize_t not int, so the first arg to atomic()
should be ssize_t too.
This commit is contained in:
parent
b0ed821446
commit
e3f5655fab
1 changed files with 3 additions and 2 deletions
|
|
@ -77,7 +77,7 @@ extern int cartridge;
|
|||
extern char *host;
|
||||
char *nexttape;
|
||||
|
||||
static int atomic __P((int (*)(), int, char *, int));
|
||||
static int atomic __P((ssize_t (*)(), int, char *, int));
|
||||
static void doslave __P((int, int));
|
||||
static void enslave __P((void));
|
||||
static void flushtape __P((void));
|
||||
|
|
@ -855,7 +855,8 @@ doslave(cmd, slave_number)
|
|||
*/
|
||||
static int
|
||||
atomic(func, fd, buf, count)
|
||||
int (*func)(), fd;
|
||||
ssize_t (*func)();
|
||||
int fd;
|
||||
char *buf;
|
||||
int count;
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue