1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-13 05:32:19 +02:00

update comment re power of 2

This commit is contained in:
Jim Meyering
2001-09-03 18:24:37 +00:00
parent cb2a0f5e50
commit 8df5a2474c
+3 -1
View File
@@ -46,7 +46,9 @@
char *
xreadlink (char const *filename, size_t *link_length_arg)
{
size_t buf_size = 128; /* must be a power of 2 */
/* The initial buffer size for the link value. A power of 2
detects arithmetic overflow earlier, but is not required. */
size_t buf_size = 128;
char *buffer = NULL;
while (1)