diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-10-29 18:39:28 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-10-29 18:39:28 (GMT) |
commit | d384b6c7459cffcbb30bdd0ab06bde6f0cd12688 (patch) | |
tree | 6386fc01aea029071bdcabdf150991c7632b5fd3 /src/entry.cpp | |
parent | 6ad4771494b64943541d87639743de4d6618ebc4 (diff) | |
download | Doxygen-d384b6c7459cffcbb30bdd0ab06bde6f0cd12688.zip Doxygen-d384b6c7459cffcbb30bdd0ab06bde6f0cd12688.tar.gz Doxygen-d384b6c7459cffcbb30bdd0ab06bde6f0cd12688.tar.bz2 |
Release-1.5.1
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); |