summaryrefslogtreecommitdiffstats
path: root/src/entry.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2006-10-29 18:39:28 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2006-10-29 18:39:28 (GMT)
commit7e81d44c98dbbb1bb30d623be52ca76bbd880038 (patch)
tree6386fc01aea029071bdcabdf150991c7632b5fd3 /src/entry.cpp
parent5e24df52170c1b19d8ef628f4e657bc35a7f300b (diff)
downloadDoxygen-7e81d44c98dbbb1bb30d623be52ca76bbd880038.zip
Doxygen-7e81d44c98dbbb1bb30d623be52ca76bbd880038.tar.gz
Doxygen-7e81d44c98dbbb1bb30d623be52ca76bbd880038.tar.bz2
Release-1.5.1
Diffstat (limited to 'src/entry.cpp')
-rw-r--r--src/entry.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/entry.cpp b/src/entry.cpp
index 34d7241..1aa6b6d 100644
--- a/src/entry.cpp
+++ b/src/entry.cpp
@@ -21,6 +21,7 @@
#include "marshal.h"
#include "util.h"
#include "section.h"
+#include "doxygen.h"
int Entry::num=0;
@@ -394,7 +395,8 @@ static bool loadEntry(Entry *e,FileStorage *f)
uint header=unmarshalUInt(f);
if (header!=HEADER)
{
- printf("Internal error: Invalid header for entry in storage file: %x. Disk full?\n",header);
+ printf("Internal error: Invalid header %x for entry in storage file %s\n",
+ header,Doxygen::entryDBFileName.data());
exit(1);
}
e->protection = (Protection)unmarshalInt(f);