plugins/undelete: avoid compilation warnings on macOS

This commit is contained in:
Pierre Pronchery 2022-05-11 07:48:37 +02:00
parent 2ebb035eb8
commit b1584ddb6c

View File

@ -196,6 +196,10 @@ static void _undelete_refresh(Undelete * undelete, GList * selection)
#if defined(__APPLE__)
static int getdents(int fd, char * buf, unsigned int count)
{
(void) fd;
(void) buf;
(void) count;
errno = ENOSYS;
return -1;
}