Explorar el Código

libdpkg: Remove unused dumpchain macro

Got converted to a macro just to avoid a compiler warning in
commit a1d9dc46c55fcc012854f8aa99058d5bb14c2a8a. The proper fix would
have been to either remove it or use it, which we are doing now.
Guillem Jover hace 16 años
padre
commit
0716206865
Se han modificado 1 ficheros con 0 adiciones y 13 borrados
  1. 0 13
      lib/dpkg/showpkg.c

+ 0 - 13
lib/dpkg/showpkg.c

@@ -199,19 +199,6 @@ parseformat(const char *fmt)
 	return head;
 }
 
-#define dumpchain(head) \
-{ \
-	const struct lstitem *ptr = head; \
-\
-	while (ptr) { \
-		printf("Type: %s\n", (ptr->type == string) ? "string" : "field"); \
-		printf("Width: %d\n", ptr->width); \
-		printf("Data: %s\n", ptr->data); \
-		printf("\n"); \
-		ptr = ptr->next; \
-	} \
-}
-
 void
 show1package(const struct lstitem *head, struct pkginfo *pkg)
 {