Bugfix: GoldNode x86 and x64 produce different indexes in some cases, patch by Ivan Novikov, 2:5080/31

This commit is contained in:
Max Vasilyev 2016-08-27 18:32:38 +00:00
parent d66672c4aa
commit e9212d8a15

View File

@ -41,7 +41,7 @@
#endif
struct _GEIdx {
long pos; // File Number OR'ed with pos in nodelist file
uint32_t pos; // File Number OR'ed with pos in nodelist file
ftn_addr addr; // Node address
char name[36]; // Name in reversed form
_GEIdx() : pos(0), addr() { *name = NUL; }