diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2009-05-12 14:27:10 +0200 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2009-05-12 14:27:10 +0200 |
commit | b7964ea806af321c086962b4dd7b20051af5d6e1 (patch) | |
tree | 99a492c2b346645a7cfda11efcf77dfab89128c8 | |
parent | 44aa48c9001d99a6c6e3087e68a3ecd1eea2faba (diff) |
[BSD] use <sys/bitstring.h> instead of <bitstring.h>
<bitstring.h> includes <sys/bitstring.h>. Directly use <sys/bitstring.h>
has the former one is not available on all systems.
-rw-r--r-- | hald/freebsd/hf-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hald/freebsd/hf-pci.c b/hald/freebsd/hf-pci.c index 273118e0..05eb03fb 100644 --- a/hald/freebsd/hf-pci.c +++ b/hald/freebsd/hf-pci.c @@ -27,7 +27,7 @@ #include <stdio.h> #include <string.h> -#include <bitstring.h> +#include <sys/bitstring.h> #include <errno.h> #include <fcntl.h> #include <unistd.h> |