From a846b0ee4e3c90bd474d6e3dc1f0a00780af2147 Mon Sep 17 00:00:00 2001 From: John Scipione Date: Mon, 30 Jun 2014 00:41:43 -0400 Subject: [PATCH] listimage: remove unused vars. ... left over from previous iterations, not sure why I didn't get unused vars warnings. Sorry for the noise. --- src/bin/listimage.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/bin/listimage.c b/src/bin/listimage.c index 98f71e4c78..1031f520b7 100644 --- a/src/bin/listimage.c +++ b/src/bin/listimage.c @@ -23,12 +23,11 @@ static status_t list_images_for_team_by_id(team_id id) { - team_info teamInfo; image_info imageInfo; int32 cookie = 0; + team_info teamInfo; const char* header; char* format; - char* name; int i; status_t result = get_team_info(id, &teamInfo); if (id != 1 && result < B_OK) @@ -100,7 +99,6 @@ main(int argc, char** argv) { int32 cookie = 0; team_info info; - const char* programName; status_t result; if (argc == 1) {