From 9fc4de30d2be8c10988dfd583a95c98bab7dabe8 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Sun, 24 Aug 2008 11:29:11 +0000 Subject: [PATCH] needs to be const, or the segment checker will bail out. (trivial) Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://coreboot.org/repository/coreboot-v3@813 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- lib/lar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lar.c b/lib/lar.c index a3514286fb..504836aaae 100644 --- a/lib/lar.c +++ b/lib/lar.c @@ -31,7 +31,7 @@ #define ntohl(x) (x) #endif -static const char *algo_name[] = { +static const char * const algo_name[] = { "none", "lzma", "nrv2b",