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

Unified Diff: context.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 | « bct_dump.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: context.c
diff --git a/context.c b/context.c
index 771b7fe43d858c52019723cdfe0cb4a7b7b3b9dc..daf0101a07217ac865bb51a08da4ee16c13995c3 100644
--- a/context.c
+++ b/context.c
@@ -32,9 +32,9 @@ query_alloc(build_image_context *context,
u_int32_t size;
/* Note: 3rd argument not used in this particular query. */
- if (context->bctlib.get_value(size_id,
- &size, context->bct) != 0)
+ if (context->bctlib.get_value(size_id, &size, context->bct) != 0)
return -ENODATA;
+
*dst = malloc(size);
if (*dst == NULL)
« no previous file with comments | « bct_dump.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698