Add missing bracket in realpath macro.

This commit is contained in:
Darren Tucker 2019-11-01 18:17:42 +11:00
parent 59ccb56f15
commit b56dbfd9d9

View File

@ -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 */