[Ups-cvs] ups/ups elfstab.h,1.1.1.1,1.2
Brought to you by:
ianedwards
From: Tom H. <th...@us...> - 2005-08-15 10:23:23
|
Update of /cvsroot/ups/ups/ups In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23290 Modified Files: elfstab.h Log Message: Make the nlist structure work on 64 bit platforms. Index: elfstab.h =================================================================== RCS file: /cvsroot/ups/ups/ups/elfstab.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** elfstab.h 26 Oct 2002 13:06:36 -0000 1.1.1.1 --- elfstab.h 15 Aug 2005 10:23:01 -0000 1.2 *************** *** 27,35 **** */ struct nlist { ! long n_offset; unsigned char n_type; char n_other; short n_desc; ! unsigned long n_value; }; --- 27,35 ---- */ struct nlist { ! int n_offset; unsigned char n_type; char n_other; short n_desc; ! unsigned int n_value; }; |