Просмотр исходного кода

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

Guillem Jover лет назад: 11
Родитель
Сommit
dbafc0431b
1 измененных файлов с 1 добавлено и 1 удалено
  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);
 		memcpy(bp, buf, copysize);
 		bp += copysize;
-	};
+	}
 
 	return status;
 }