diff options
author | tklauser@access.unizh.ch <tklauser@access.unizh.ch> | 2005-03-18 09:27:31 +0100 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 23:53:53 -0700 |
commit | a5b9e2994a6d34cb169eaa0e2cf16d0a7c4f197a (patch) | |
tree | 26e29d578952c30fb599ba5b02240e86a260a7ff | |
parent | 7f7ae03a6290ccc1e4ca57416fe871dae4b865d2 (diff) |
[PATCH] fix header paths in udev_libc_wrapper.c
In udev_libc_wrapper.c the paths to the local header files are wrong.
The attached patch fixes this.
-rw-r--r-- | udev_libc_wrapper.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/udev_libc_wrapper.c b/udev_libc_wrapper.c index 0dafe4d077..4b39b6f476 100644 --- a/udev_libc_wrapper.c +++ b/udev_libc_wrapper.c @@ -27,10 +27,10 @@ #include <fcntl.h> #include <sys/types.h> -#include "../udev_libc_wrapper.h" -#include "../udev.h" -#include "../udev_utils.h" -#include "../logging.h" +#include "udev_libc_wrapper.h" +#include "udev.h" +#include "udev_utils.h" +#include "logging.h" #ifdef __KLIBC__ #define __OWN_USERDB_PARSER__ |