Browse Source

libdpkg: Remove useless trailing ‘;’ in for (;;) block

Guillem Jover 11 years ago
parent
commit
dbafc0431b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/dpkg/tarfn.c

+ 1 - 1
lib/dpkg/tarfn.c

@@ -244,7 +244,7 @@ tar_gnu_long(void *ctx, const struct tar_operations *ops, struct tar_entry *te,
 		copysize = min(long_read, TARBLKSZ);
 		copysize = min(long_read, TARBLKSZ);
 		memcpy(bp, buf, copysize);
 		memcpy(bp, buf, copysize);
 		bp += copysize;
 		bp += copysize;
-	};
+	}
 
 
 	return status;
 	return status;
 }
 }