From 3746d5ebc625ff97940c6fdbb1f666a9d7b6c29a Mon Sep 17 00:00:00 2001 From: Rolf Evers-Fischer Date: Mon, 30 Jun 2014 14:27:30 +0200 Subject: [PATCH] boot: fix typo Signed-off-by: Rolf Evers-Fischer Signed-off-by: Sascha Hauer --- commands/boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/boot.c b/commands/boot.c index ba26cac98..3341a05eb 100644 --- a/commands/boot.c +++ b/commands/boot.c @@ -151,7 +151,7 @@ static int bootscript_scan_path(struct blspec *blspec, const char *path) glob(files, 0, NULL, &globb); for (i = 0; i < globb.gl_pathc; i++) { - char *bootscript_path = globb.gl_pathv[i];; + char *bootscript_path = globb.gl_pathv[i]; if (*basename(bootscript_path) == '.') continue;