diff options
Diffstat (limited to 'src/entry.cpp')
-rw-r--r-- | src/entry.cpp | 4 |
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); |