From 16269db65d42fe626b6c07002ed470a87e1b680d Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 25 Mar 2016 22:29:27 +0000 Subject: [PATCH] opendir: remove unused variable --- Library/libs/opendir.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Library/libs/opendir.c b/Library/libs/opendir.c index b64c31f4..7596f754 100644 --- a/Library/libs/opendir.c +++ b/Library/libs/opendir.c @@ -8,7 +8,6 @@ DIR *opendir(char *path) { - struct stat statbuf; DIR *dir = calloc(1, sizeof(DIR)); if (dir == NULL) { errno = ENOMEM; -- 2.34.1