Fix tab stops to be 8-spaces instead of 4.

Change-Id: If70ee0c550a37ad7401552c231021b966b8e368f

BUG=None
TEST=None

Review URL: http://codereview.chromium.org/6579041
This commit is contained in:
Anton Staaf 2011-03-02 09:22:25 -08:00
parent c6244270f4
commit 2b6c88c2d9
3 changed files with 14 additions and 14 deletions

View File

@ -2,9 +2,9 @@
;;; indent cbootimage style source code.
((nil . ((indent-tabs-mode . t)
(tab-width . 4)
(tab-width . 8)
(fill-column . 80)))
(c-mode . ((c-tab-always-indent . nil)
(c-basic-offset . 4)))
(c++-mode . ((c-tab-always-indent . nil)
(c-basic-offset . 4))))
(c-mode . ((c-basic-offset . 8)))
(c++-mode . ((c-basic-offset . 8))))

View File

@ -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)