Replace space, tab mixes by tabs.

Submitted by:	Max Okumoto <okumoto@ucsd.edu>
This commit is contained in:
Hartmut Brandt 2005-02-04 08:15:11 +00:00
parent f6dc7bd983
commit fec9b45897

View File

@ -740,11 +740,11 @@ static FILE *
ArchFindMember(const char *archive, const char *member, struct ar_hdr *arhPtr,
const char *mode)
{
FILE * arch; /* Stream to archive */
int size; /* Size of archive member */
const char *cp; /* Useful character pointer */
char magic[SARMAG];
size_t len, tlen;
FILE *arch; /* Stream to archive */
int size; /* Size of archive member */
const char *cp; /* Useful character pointer */
char magic[SARMAG];
size_t len, tlen;
arch = fopen(archive, mode);
if (arch == NULL) {