summaryrefslogtreecommitdiff
path: root/Build/source/texk/bibtex8/bibtex.h
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2010-05-02 15:24:45 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2010-05-02 15:24:45 +0000
commit5459f37747e9bca691eae40a74fab6084d1d30a2 (patch)
treeb8d2aec586a17ac34d29251ade89ae0953df46f6 /Build/source/texk/bibtex8/bibtex.h
parentbfda35382348309e97d9dd46c36b1bb0519d371f (diff)
fixed a bug in the macro BIB_XRETALLOC_STRING.
git-svn-id: svn://tug.org/texlive/trunk@18082 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/bibtex8/bibtex.h')
-rw-r--r--Build/source/texk/bibtex8/bibtex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/bibtex8/bibtex.h b/Build/source/texk/bibtex8/bibtex.h
index c5454b15285..bd708229711 100644
--- a/Build/source/texk/bibtex8/bibtex.h
+++ b/Build/source/texk/bibtex8/bibtex.h
@@ -1480,7 +1480,7 @@
if (log_file != NULL)\
fprintf (log_file, "Reallocated %s (elt_size=%d) to %ld items from %ld.\n", \
array_name, (int) (length + 1), new_size, size_var); \
- MYRETALLOC (array_name, array_var, new_size * (length + 1), ASCIICode_T)
+ MYRETALLOC (array_name, array_var, (new_size) * (length + 1), ASCIICode_T)
#endif /* __BIBTEX_H__ */