diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2010-05-02 15:30:24 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2010-05-02 15:30:24 +0000 |
commit | 40d84354a4ce0220524c0802d85086474293c73c (patch) | |
tree | ee75dd2a801b813299b4ac45b5f86f1c6f9b1109 /Build/source/texk/bibtexu/bibtex.h | |
parent | 5459f37747e9bca691eae40a74fab6084d1d30a2 (diff) |
fixed a bug in the macro BIB_XRETALLOC_STRING.
git-svn-id: svn://tug.org/texlive/trunk@18083 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/bibtexu/bibtex.h')
-rw-r--r-- | Build/source/texk/bibtexu/bibtex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/bibtexu/bibtex.h b/Build/source/texk/bibtexu/bibtex.h index 337ba446cfd..58245149241 100644 --- a/Build/source/texk/bibtexu/bibtex.h +++ b/Build/source/texk/bibtexu/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__ */ |