aboutsummaryrefslogtreecommitdiffstats
path: root/str_array.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-01-10 22:09:43 +0200
committerArnold D. Robbins <arnold@skeeve.com>2018-01-10 22:09:43 +0200
commit27258ae8aff7bb3acae54f9e30ce93614bbb9590 (patch)
tree5ad316a23ccade25763125dfdd79b75d36f1edf1 /str_array.c
parente1231907ef810d6e73a643c50aa29ce6b3fe4947 (diff)
parent11ef8fd2637da3ad21f2bc803432cadf3451b67a (diff)
downloadegawk-27258ae8aff7bb3acae54f9e30ce93614bbb9590.tar.gz
egawk-27258ae8aff7bb3acae54f9e30ce93614bbb9590.tar.bz2
egawk-27258ae8aff7bb3acae54f9e30ce93614bbb9590.zip
Merge branch 'gawk-4.2-stable'
Diffstat (limited to 'str_array.c')
-rw-r--r--str_array.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/str_array.c b/str_array.c
index 8d6d2b01..bc6584d2 100644
--- a/str_array.c
+++ b/str_array.c
@@ -3,7 +3,7 @@
*/
/*
- * Copyright (C) 1986, 1988, 1989, 1991-2013, 2016, 2017,
+ * Copyright (C) 1986, 1988, 1989, 1991-2013, 2016, 2017, 2018,
* the Free Software Foundation, Inc.
*
* This file is part of GAWK, the GNU implementation of the
@@ -444,7 +444,7 @@ str_kilobytes(NODE *symbol)
bucket_cnt = symbol->table_size;
- /* This does not include extra memory for indices with stfmt != -1 */
+ /* This does not include extra memory for indices with stfmt != STFMT_UNUSED */
kb = (((AWKNUM) bucket_cnt) * sizeof (BUCKET) +
((AWKNUM) symbol->array_size) * sizeof (BUCKET *)) / 1024.0;
return kb;