summaryrefslogtreecommitdiff
path: root/src/scsi_id
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2014-03-15 08:16:41 -0400
committerAnthony G. Basile <blueness@gentoo.org>2014-03-15 08:16:41 -0400
commitc5a77c7d10bafac25deca8e3c36946df0dc43071 (patch)
tree9fe075a080296c13ed0fc4d56db1e5d98d89b632 /src/scsi_id
parentac1546da719c57e6e0ae2db1b9bae1dfbe329429 (diff)
Fix issue #87: fails to build on linux headers 3.13
Commit 80b10107cb added #include <linux/fcntl.h> in src/accelerometer and friends for builds on uclibc. This only works with glibc and musl systems with linux headers 3.9 but fails with linux headers 3.13. We keep <linux/fcntl.h> but drop <fcntl.h>. Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/scsi_id')
-rw-r--r--src/scsi_id/scsi_serial.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/scsi_id/scsi_serial.c b/src/scsi_id/scsi_serial.c
index b60b154d2d..7c5f7a35ef 100644
--- a/src/scsi_id/scsi_serial.c
+++ b/src/scsi_id/scsi_serial.c
@@ -23,7 +23,6 @@
#include <stdio.h>
#include <errno.h>
#include <string.h>
-#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
#include <syslog.h>