From: Alan Cox Date: Fri, 25 Mar 2016 22:29:27 +0000 (+0000) Subject: opendir: remove unused variable X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=16269db65d42fe626b6c07002ed470a87e1b680d;p=FUZIX.git opendir: remove unused variable --- 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;