summaryrefslogtreecommitdiff
path: root/udev/udev_utils_file.c
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2008-09-10 21:50:21 +0200
committerKay Sievers <kay.sievers@vrfy.org>2008-09-10 21:50:21 +0200
commit17fcfb5972977b6a3aedca6ad2aa8d1fbfbc761d (patch)
tree829107a8a24b59948c67d0877990e39cbf1c32ce /udev/udev_utils_file.c
parent31c1f537450e96f8ddd6a0fad2adaefe57996f03 (diff)
use size definitions from libudev
Diffstat (limited to 'udev/udev_utils_file.c')
-rw-r--r--udev/udev_utils_file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/udev/udev_utils_file.c b/udev/udev_utils_file.c
index abe17eb300..1c7b07347b 100644
--- a/udev/udev_utils_file.c
+++ b/udev/udev_utils_file.c
@@ -31,7 +31,7 @@
int create_path(struct udev *udev, const char *path)
{
- char p[PATH_SIZE];
+ char p[UTIL_PATH_SIZE];
char *pos;
struct stat stats;
int ret;
@@ -67,7 +67,7 @@ int create_path(struct udev *udev, const char *path)
int delete_path(struct udev *udev, const char *path)
{
- char p[PATH_SIZE];
+ char p[UTIL_PATH_SIZE];
char *pos;
int retval;