Skip to content
Snippets Groups Projects
Commit abcac872 authored by Stefan Roese's avatar Stefan Roese
Browse files

Fix output for "Unprotecting".

parent 38a95195
No related branches found
No related tags found
No related merge requests found
......@@ -463,7 +463,8 @@ int flash_sect_protect (int p, ulong addr_first, ulong addr_last)
}
if (s_first[bank]>=0 && s_first[bank]<=s_last[bank]) {
debug ("Protecting sectors %d..%d in bank %ld\n",
debug ("%sProtecting sectors %d..%d in bank %ld\n",
p ? "" : "Un-",
s_first[bank], s_last[bank], bank+1);
protected += s_last[bank] - s_first[bank] + 1;
for (i=s_first[bank]; i<=s_last[bank]; ++i) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment