From d60f3449ea833d1b96ec3ea43b795030cbd972e0 Mon Sep 17 00:00:00 2001 From: nvt-se Date: Fri, 14 Sep 2007 20:12:55 +0000 Subject: [PATCH] static before const. --- core/loader/elfloader.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/loader/elfloader.c b/core/loader/elfloader.c index 70b4e2694..bd588a0de 100644 --- a/core/loader/elfloader.c +++ b/core/loader/elfloader.c @@ -28,7 +28,7 @@ * * This file is part of the Contiki operating system. * - * @(#)$Id: elfloader.c,v 1.6 2007/08/30 14:39:18 matsutsuka Exp $ + * @(#)$Id: elfloader.c,v 1.7 2007/09/14 20:12:55 nvt-se Exp $ */ #include "contiki.h" @@ -137,7 +137,7 @@ struct process **elfloader_autostart_processes; static struct relevant_section bss, data, rodata, text; -const static unsigned char elf_magic_header[] = +static const unsigned char elf_magic_header[] = {0x7f, 0x45, 0x4c, 0x46, /* 0x7f, 'E', 'L', 'F' */ 0x01, /* Only 32-bit objects. */ 0x01, /* Only LSB data. */