28 lines
682 B
Diff
28 lines
682 B
Diff
|
From f2a5f57a20ffa007abc1fa24df1f76e18b74a425 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Cristian=20Rodr=C3=ADguez?= <crrodriguez@opensuse.org>
|
||
|
Date: Tue, 10 Jun 2014 14:34:50 -0400
|
||
|
Subject: [PATCH 20/34] telldir return value and seekdir second parameters are
|
||
|
of type long
|
||
|
|
||
|
not off_t .. since a pretty long time.
|
||
|
---
|
||
|
libmisc/walk_tree.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/libmisc/walk_tree.c b/libmisc/walk_tree.c
|
||
|
index 2be9d47..a93a662 100644
|
||
|
--- a/libmisc/walk_tree.c
|
||
|
+++ b/libmisc/walk_tree.c
|
||
|
@@ -34,7 +34,7 @@ struct entry_handle {
|
||
|
dev_t dev;
|
||
|
ino_t ino;
|
||
|
DIR *stream;
|
||
|
- off_t pos;
|
||
|
+ long pos;
|
||
|
};
|
||
|
|
||
|
struct entry_handle head = {
|
||
|
--
|
||
|
2.5.2
|
||
|
|