summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2010-11-28 10:06:01 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2010-11-28 10:06:01 +0000
commit10e0279afcd10ec8ed3bac88e942e8c431947354 (patch)
treeb6d95d542399d172f392db6c6cdeb29d1ef63fae
parent5d274e528c5cf1dd2eec2f6a832ec6f40a13952d (diff)
downloadrockbox-10e0279afcd10ec8ed3bac88e942e8c431947354.tar.gz
rockbox-10e0279afcd10ec8ed3bac88e942e8c431947354.zip
Make model_names static in mkmpioboot.
Both mkmpioboot and mkamsboot use an array model_names which clash when linking with Rockbox Utility so don't export the mkmpioboot one. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28690 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--rbutil/mkmpioboot/mkmpioboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/mkmpioboot/mkmpioboot.c b/rbutil/mkmpioboot/mkmpioboot.c
index 37dac60ec8..b36f009730 100644
--- a/rbutil/mkmpioboot/mkmpioboot.c
+++ b/rbutil/mkmpioboot/mkmpioboot.c
@@ -31,7 +31,7 @@
31#define BOOTLOADER_MAX_SIZE 0x1f800 /* free space size */ 31#define BOOTLOADER_MAX_SIZE 0x1f800 /* free space size */
32 32
33/* Descriptive name of these models */ 33/* Descriptive name of these models */
34const char* model_names[] = { 34static const char* model_names[] = {
35 [MODEL_HD200] = "MPIO HD200", 35 [MODEL_HD200] = "MPIO HD200",
36 [MODEL_HD300] = "MPIO HD300", 36 [MODEL_HD300] = "MPIO HD300",
37}; 37};