From: Stefan Roese Date: Mon, 10 Jan 2011 11:48:00 +0000 (+0100) Subject: Small coding style fix in lib/asm-offsets.c X-Git-Tag: v2011.03-rc1~27 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0c51c245a16c9526763f30c2b120edf9de8da173;p=u-boot Small coding style fix in lib/asm-offsets.c Signed-off-by: Stefan Roese Acked-by: Michal Simek --- diff --git a/lib/asm-offsets.c b/lib/asm-offsets.c index 6f253a6362..c88f5d4451 100644 --- a/lib/asm-offsets.c +++ b/lib/asm-offsets.c @@ -23,10 +23,10 @@ int main(void) { /* Round up to make sure size gives nice stack alignment */ DEFINE(GENERATED_GBL_DATA_SIZE, - (sizeof(struct global_data)+15) & ~15); + (sizeof(struct global_data) + 15) & ~15); DEFINE(GENERATED_BD_INFO_SIZE, - (sizeof(struct bd_info)+15) & ~15); + (sizeof(struct bd_info) + 15) & ~15); return 0; }