Revert "Orphaned for 6+ weeks"
This reverts commit da1c3e396c.
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
15 lines
381 B
Diff
15 lines
381 B
Diff
Include <unistd.h> for the close function. This prevents a future
|
|
build failure due to an implicit function declaration.
|
|
|
|
diff --git a/bless.c b/bless.c
|
|
index 4d107feff0c0ece4..60d426e897c37e4d 100644
|
|
--- a/bless.c
|
|
+++ b/bless.c
|
|
@@ -25,6 +25,7 @@
|
|
#include <sys/ioctl.h>
|
|
#include <sys/vfs.h>
|
|
#include <fcntl.h>
|
|
+#include <unistd.h>
|
|
|
|
#define HFSPLUS_IOC_BLESS _IO('h', 0x80)
|
|
|