diff options
author | Kevin Ryde <user42@zip.com.au> | 2001-11-05 01:37:36 +0100 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2001-11-05 01:37:36 +0100 |
commit | 3952026eb4a13df3bf766ad2ab1c8482c22d3dfb (patch) | |
tree | 6cb368176f8389a4679e7f07f5719d76b32853b4 /mpq | |
parent | d5012d68e3a1976e805b11ece298f906a21e1444 (diff) | |
download | gmp-3952026eb4a13df3bf766ad2ab1c8482c22d3dfb.tar.gz |
* mpq/inp_str.c: Remove unused variable "ret".
Diffstat (limited to 'mpq')
-rw-r--r-- | mpq/inp_str.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpq/inp_str.c b/mpq/inp_str.c index abb472c75..9d00cf705 100644 --- a/mpq/inp_str.c +++ b/mpq/inp_str.c @@ -28,7 +28,7 @@ MA 02111-1307, USA. */ size_t mpq_inp_str (mpq_ptr q, FILE *fp, int base) { - size_t nread, ret; + size_t nread; int c; if (fp == NULL) |