From 50fc862d69984089ce09138b3350ee7762290403 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristian=20Rodr=C3=ADguez?= Date: Tue, 10 Jun 2014 14:34:50 -0400 Subject: 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 = { -- cgit v1.2.1