summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRolf Evers-Fischer <embedded24@evers-fischer.de>2014-06-30 14:27:30 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2014-07-01 08:44:56 +0200
commit3746d5ebc625ff97940c6fdbb1f666a9d7b6c29a (patch)
treec09df41b6f98b4d2cd5761a8e747fda2eecb356d
parenta78452fd2d46bb2de86dbf31c3afeb4c8636ed50 (diff)
downloadbarebox-3746d5ebc625ff97940c6fdbb1f666a9d7b6c29a.tar.gz
barebox-3746d5ebc625ff97940c6fdbb1f666a9d7b6c29a.tar.xz
boot: fix typo
Signed-off-by: Rolf Evers-Fischer <rolf.evers.fischer@delphi.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--commands/boot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/boot.c b/commands/boot.c
index ba26cac986..3341a05ebd 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;