From bd7c67136ac961f4dd8b06514ca00de900cd1f8c Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Sat, 9 Sep 2000 15:04:34 +0000 Subject: remove some printf statements i forgot about --- ar.c | 3 --- archival/ar.c | 3 --- 2 files changed, 6 deletions(-) diff --git a/ar.c b/ar.c index 5803ad1a7..adb6982b2 100644 --- a/ar.c +++ b/ar.c @@ -175,7 +175,6 @@ static headerL_t *getHeaders(int srcFd, headerL_t *head, int funct) list = (headerL_t *) malloc(sizeof(headerL_t)); if (checkArMagic(srcFd)==TRUE) { - printf("found ar header "); while(readArEntry(srcFd, list) == TRUE) { list->next = (headerL_t *) malloc(sizeof(headerL_t)); *list->next = *head; @@ -187,8 +186,6 @@ static headerL_t *getHeaders(int srcFd, headerL_t *head, int funct) lseek(srcFd, head->offset + head->size, SEEK_SET); } } - else - printf("not an ar header\n"); return(head); } 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) list = (headerL_t *) malloc(sizeof(headerL_t)); if (checkArMagic(srcFd)==TRUE) { - printf("found ar header "); while(readArEntry(srcFd, list) == TRUE) { list->next = (headerL_t *) malloc(sizeof(headerL_t)); *list->next = *head; @@ -187,8 +186,6 @@ static headerL_t *getHeaders(int srcFd, headerL_t *head, int funct) lseek(srcFd, head->offset + head->size, SEEK_SET); } } - else - printf("not an ar header\n"); return(head); } -- cgit v1.2.3