From 43bf655fbc6c698deaf35b411230af0fa65c7513 Mon Sep 17 00:00:00 2001 From: rpokala Date: Wed, 8 Feb 2017 00:02:54 +0000 Subject: [PATCH] Fix indentation (only line in file w/ 8-space indent rather than hard-tab). MFH: 1 week --- usr.sbin/bsdinstall/partedit/scripted.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/bsdinstall/partedit/scripted.c b/usr.sbin/bsdinstall/partedit/scripted.c index 75390f3b426f..c34b3079d679 100644 --- a/usr.sbin/bsdinstall/partedit/scripted.c +++ b/usr.sbin/bsdinstall/partedit/scripted.c @@ -85,7 +85,7 @@ part_config(char *disk, const char *scheme, char *config) LIST_FOREACH(classp, &mesh.lg_class, lg_class) if (strcmp(classp->lg_name, "PART") == 0) break; - if (classp != NULL) { + if (classp != NULL) { LIST_FOREACH(gpart, &classp->lg_geom, lg_geom) if (strcmp(gpart->lg_name, disk) == 0) break;