Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(684)

Unified Diff: bct_dump.c

Issue 6579041: Fix tab stops to be 8-spaces instead of 4. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/cbootimage.git@master
Patch Set: Fix tab stops. Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « .dir-locals.el ('k') | context.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bct_dump.c
diff --git a/bct_dump.c b/bct_dump.c
index bc9bd8128a4b0bf02174b57c837110c349bf28d5..15f937b64902347b68772c836087ea3ca4192de8 100644
--- a/bct_dump.c
+++ b/bct_dump.c
@@ -99,17 +99,17 @@ main(int argc, char *argv[])
}
e = context.bctlib.get_value(nvbct_lib_id_bootloader_used,
- &bootloaders_used,
- context.bct);
+ &bootloaders_used,
+ context.bct);
for (i = 0; (e == 0) && (i < bootloaders_used); ++i) {
printf("Bootloader[%d]\n", i);
for (j = 0; j < sizeof(bl_values) / sizeof(bl_values[0]); ++j) {
e = context.bctlib.getbl_param(i,
- bl_values[j].id,
- &data,
- context.bct);
+ bl_values[j].id,
+ &data,
+ context.bct);
printf(bl_values[j].message, e == 0 ? data : -1);
}
}
« no previous file with comments | « .dir-locals.el ('k') | context.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698