Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 207737 | Differences between
and this patch

Collapse All | Expand All

(-)squashfs-tools/mksquashfs.c.orig (-6 / +6 lines)
Lines 1926-1942 Link Here
1926
	if(!progress || columns - used < 0)
1926
	if(!progress || columns - used < 0)
1927
		return 0;
1927
		return 0;
1928
1928
1929
	printf("\r[");
1929
	fprintf(stderr, "\r[");
1930
1930
1931
	while (hashes --)
1931
	while (hashes --)
1932
		putchar('=');
1932
		putc('=', stderr);
1933
1933
1934
	while(spaces --)
1934
	while(spaces --)
1935
		putchar(' ');
1935
		putc(' ', stderr);
1936
1936
1937
	printf("] %*lld/%*lld", max_digits, current, max_digits, max);
1937
	fprintf(stderr, "] %*lld/%*lld", max_digits, current, max_digits, max);
1938
	printf(" %3lld%%", current * 100 / max);
1938
	fprintf(stderr, " %3lld%%", current * 100 / max);
1939
	fflush(stdout);
1939
	fflush(stderr);
1940
	return 0;
1940
	return 0;
1941
}
1941
}
1942
1942

Return to bug 207737