maint: dd: remove unnecessary initialization
authorJim Meyering <meyering@redhat.com>
Mon, 31 Aug 2009 15:05:46 +0000 (17:05 +0200)
committerJim Meyering <meyering@redhat.com>
Tue, 1 Sep 2009 10:10:07 +0000 (12:10 +0200)
* src/dd.c (skip): Remove set-but-never-used variable, soffset.

src/dd.c

index d2f566eace23af520fc82cf7897f2889a685fc62..04665f98f8ec50f77a8cb7008c63e1995824801f 100644 (file)
--- a/src/dd.c
+++ b/src/dd.c
@@ -1315,14 +1315,13 @@ skip (int fdesc, char const *file, uintmax_t records, size_t blocksize,
   else
     {
       int lseek_errno = errno;
-      off_t soffset;
 
       /* The seek request may have failed above if it was too big
          (> device size, > max file size, etc.)
          Or it may not have been done at all (> OFF_T_MAX).
          Therefore try to seek to the end of the file,
          to avoid redundant reading.  */
-      if ((soffset = skip_via_lseek (file, fdesc, 0, SEEK_END)) >= 0)
+      if ((skip_via_lseek (file, fdesc, 0, SEEK_END)) >= 0)
         {
           /* File is seekable, and we're at the end of it, and
              size <= OFF_T_MAX. So there's no point using read to advance.  */