Fix the strange 2-space indentation that appears only in this one function.

This commit is contained in:
Ian Lepore 2014-02-22 03:29:53 +00:00
parent 9e9ea73715
commit f5658746ab
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=262326

View File

@ -267,7 +267,10 @@ fdt_setup_fdtp()
return fdt_load_dtb_addr(fdt_to_load);
}
/* Board vendors use both fdtaddr and fdt_addr. Grrrr. */
s = ub_env_get("fdtaddr");
if (s == NULL)
s = ub_env_get("fdt_addr");
if (s != NULL && *s != '\0') {
hdr = (struct fdt_header *)strtoul(s, &p, 16);
if (*p == '\0') {