mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-28 20:43:45 +08:00
Minor format fixes.
This commit is contained in:
parent
14f6fdb6c8
commit
37a1fd96b7
@ -28,6 +28,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||||
|
||||
/* $Id$
|
||||
* $Log$
|
||||
* Revision 1.3 1991/04/04 14:56:42 gumby
|
||||
* Minor format fixes.
|
||||
*
|
||||
* Revision 1.2 1991/04/03 22:09:43 steve
|
||||
* Various noise
|
||||
*
|
||||
@ -1168,7 +1171,6 @@ coff_write_armap (arch, elength, map, orl_count, stridx)
|
||||
int last_eltno = 0; /* last element arch seen */
|
||||
int count;
|
||||
struct ar_hdr hdr;
|
||||
struct stat statbuf;
|
||||
unsigned int i;
|
||||
int padit = mapsize & 1;
|
||||
|
||||
@ -1177,11 +1179,14 @@ coff_write_armap (arch, elength, map, orl_count, stridx)
|
||||
archive_member_file_ptr =
|
||||
mapsize + elength + sizeof (struct ar_hdr) + SARMAG;
|
||||
|
||||
fstat (arch->iostream, &statbuf); /* FIXME -- descriptor must be open! */
|
||||
memset ((char *)(&hdr), 0, sizeof (struct ar_hdr));
|
||||
hdr.ar_name[0] = '/';
|
||||
sprintf (hdr.ar_size, "%-10d", (int) mapsize);
|
||||
sprintf (hdr.ar_date, "%ld", statbuf.st_mtime);
|
||||
sprintf (hdr.ar_date, "%ld", time (NULL));
|
||||
/* This, at least, is what Intel coff sets the values to.: */
|
||||
sprintf ((hdr.ar_uid), "%d", 0);
|
||||
sprintf ((hdr.ar_gid), "%d", 0);
|
||||
sprintf ((hdr.ar_mode), "%-7o", 0);
|
||||
hdr.ar_fmag[0] = '`'; hdr.ar_fmag[1] = '\n';
|
||||
|
||||
for (i = 0; i < sizeof (struct ar_hdr); i++)
|
||||
|
Loading…
Reference in New Issue
Block a user