aboutsummaryrefslogtreecommitdiff
path: root/archival/ar.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2000-09-09 15:04:34 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2000-09-09 15:04:34 +0000
commitbd7c67136ac961f4dd8b06514ca00de900cd1f8c (patch)
tree9073b4064e6b2d4692f92440952d8874a2604d78 /archival/ar.c
parent1c6917d2c482e8fca6d39acb3901a63de5af0674 (diff)
downloadbusybox-w32-bd7c67136ac961f4dd8b06514ca00de900cd1f8c.tar.gz
busybox-w32-bd7c67136ac961f4dd8b06514ca00de900cd1f8c.tar.bz2
busybox-w32-bd7c67136ac961f4dd8b06514ca00de900cd1f8c.zip
remove some printf statements i forgot about
Diffstat (limited to 'archival/ar.c')
-rw-r--r--archival/ar.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/archival/ar.c b/archival/ar.c
index 5803ad1a7..adb6982b2 100644
--- a/archival/ar.c
+++ b/archival/ar.c
@@ -175,7 +175,6 @@ static headerL_t *getHeaders(int srcFd, headerL_t *head, int funct)
175 list = (headerL_t *) malloc(sizeof(headerL_t)); 175 list = (headerL_t *) malloc(sizeof(headerL_t));
176 176
177 if (checkArMagic(srcFd)==TRUE) { 177 if (checkArMagic(srcFd)==TRUE) {
178 printf("found ar header ");
179 while(readArEntry(srcFd, list) == TRUE) { 178 while(readArEntry(srcFd, list) == TRUE) {
180 list->next = (headerL_t *) malloc(sizeof(headerL_t)); 179 list->next = (headerL_t *) malloc(sizeof(headerL_t));
181 *list->next = *head; 180 *list->next = *head;
@@ -187,8 +186,6 @@ static headerL_t *getHeaders(int srcFd, headerL_t *head, int funct)
187 lseek(srcFd, head->offset + head->size, SEEK_SET); 186 lseek(srcFd, head->offset + head->size, SEEK_SET);
188 } 187 }
189 } 188 }
190 else
191 printf("not an ar header\n");
192 return(head); 189 return(head);
193} 190}
194 191