plugins/undelete: avoid compilation warnings on macOS
This commit is contained in:
parent
2ebb035eb8
commit
b1584ddb6c
|
@ -196,6 +196,10 @@ static void _undelete_refresh(Undelete * undelete, GList * selection)
|
||||||
#if defined(__APPLE__)
|
#if defined(__APPLE__)
|
||||||
static int getdents(int fd, char * buf, unsigned int count)
|
static int getdents(int fd, char * buf, unsigned int count)
|
||||||
{
|
{
|
||||||
|
(void) fd;
|
||||||
|
(void) buf;
|
||||||
|
(void) count;
|
||||||
|
|
||||||
errno = ENOSYS;
|
errno = ENOSYS;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user