From 3bf972993f689965c857540ec1ccc729477e8e66 Mon Sep 17 00:00:00 2001
From: eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
Date: Thu, 29 Aug 2002 04:38:37 +0000
Subject: [PATCH] * io.c (read_all): should use off_t instead of long.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2763 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
---
 ChangeLog | 4 ++++
 io.c      | 2 +-
 version.h | 4 ++--
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index c350b0abf6..a90f1699fa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Aug 29 13:36:42 2002  WATANABE Hirofumi  <eban@ruby-lang.org>
+
+	* io.c (read_all): should use off_t instead of long.
+
 Thu Aug 29 00:55:55 2002  Nobuyoshi Nakada  <nobu.nokada@softhome.net>
 
 	* marshal.c (r_object): yield loaded objects, not intermediates.
diff --git a/io.c b/io.c
index 5693aba842..f28a4d9f84 100644
--- a/io.c
+++ b/io.c
@@ -642,7 +642,7 @@ read_all(fptr, siz)
     VALUE str;
     long bytes = 0;
     long n;
-    long pos = 0;
+    off_t pos = 0;
 
     if (feof(fptr->f)) return Qnil;
     READ_CHECK(fptr->f);
diff --git a/version.h b/version.h
index c292fc58c6..bf2a1f67ec 100644
--- a/version.h
+++ b/version.h
@@ -1,4 +1,4 @@
 #define RUBY_VERSION "1.7.3"
-#define RUBY_RELEASE_DATE "2002-08-28"
+#define RUBY_RELEASE_DATE "2002-08-29"
 #define RUBY_VERSION_CODE 173
-#define RUBY_RELEASE_CODE 20020828
+#define RUBY_RELEASE_CODE 20020829