Fix missing-parenthesis typo.

This commit is contained in:
bjh21 2001-04-24 21:57:08 +00:00
parent 94391160f5
commit 5907bb14c3
1 changed files with 1 additions and 1 deletions

View File

@ -1484,7 +1484,7 @@ bfd_ar_hdr_from_filesystem (abfd, filename, member)
hpux_uid_gid_encode (hdr->ar_uid, (long) status.st_gid);
#else
fprintf (stderr, "%s: gid %ld truncated to 5 digits\n", filename, (long) status.st_gid);
sprintf ((hdr->ar_gid), "%ld", (long) (status.st_gid % 100000);
sprintf ((hdr->ar_gid), "%ld", (long) (status.st_gid % 100000));
#endif
}
else