Add missing bracket in realpath macro.

This commit is contained in:
Darren Tucker 2019-11-01 18:17:42 +11:00
Родитель 59ccb56f15
Коммит b56dbfd9d9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -183,7 +183,7 @@ struct tm *localtime_r(const time_t *, struct tm *);
#endif
#ifndef HAVE_REALPATH
#define realpath(x, y) (sftp_realpath((x), (y))
#define realpath(x, y) (sftp_realpath((x), (y)))
#endif
#endif /* _BSD_MISC_H */