From 7e9fe7b1c5f84a2739afd706b6742f6d1feaa1b3 Mon Sep 17 00:00:00 2001 From: bug1 Date: Sat, 9 Sep 2000 15:04:34 +0000 Subject: remove some printf statements i forgot about git-svn-id: svn://busybox.net/trunk/busybox@1023 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- ar.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'ar.c') 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); } -- cgit v1.2.3-55-g6feb