summaryrefslogtreecommitdiff
path: root/Build/source/texk/bibtex8
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2010-03-09 14:46:22 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2010-03-09 14:46:22 +0000
commit87d25c40a989b50b41748dfc88040270306019b0 (patch)
tree1acdf9a1d76d0efa9bda9ea2f9029c2613636b22 /Build/source/texk/bibtex8
parent11a1b6a09e5c5420a70fa9a31941d21377e4020e (diff)
minor bibtex/bibtex8/bibtexu clean up
git-svn-id: svn://tug.org/texlive/trunk@17397 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/bibtex8')
-rw-r--r--Build/source/texk/bibtex8/ChangeLog4
-rw-r--r--Build/source/texk/bibtex8/bibtex-1.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/bibtex8/ChangeLog b/Build/source/texk/bibtex8/ChangeLog
index 2663ff5eab2..bb552950ec1 100644
--- a/Build/source/texk/bibtex8/ChangeLog
+++ b/Build/source/texk/bibtex8/ChangeLog
@@ -1,3 +1,7 @@
+2010-03-09 Peter Breitenlohner <peb@mppmu.mpg.de>
+
+ * bibtex-1.c: Remove spurious format spec in BIBTEX_OVERFLOW.
+
2010-03-02 Peter Breitenlohner <peb@mppmu.mpg.de>
* bibtex-1.c, bibtex.h: Adapt to bibtex.web 0.99d test 1
diff --git a/Build/source/texk/bibtex8/bibtex-1.c b/Build/source/texk/bibtex8/bibtex-1.c
index 9a19d20b80b..c9282bdd9dc 100644
--- a/Build/source/texk/bibtex8/bibtex-1.c
+++ b/Build/source/texk/bibtex8/bibtex-1.c
@@ -2611,7 +2611,7 @@ BEGIN
FN_INFO[fn_loc] = num_glb_strs;
if (num_glb_strs == MAX_GLOB_STRS)
BEGIN
- BIBTEX_OVERFLOW ("number of string global-variables %ld", MAX_GLOB_STRS);
+ BIBTEX_OVERFLOW ("number of string global-variables ", MAX_GLOB_STRS);
END
INCR (num_glb_strs);
END