diff options
author | Debarshi Ray <rishi@sunflower.(none)> | 2007-03-08 01:52:08 +0530 |
---|---|---|
committer | Debarshi Ray <rishi@sunflower.(none)> | 2007-03-08 01:52:08 +0530 |
commit | 3281e2847dc0e460e71feabc1e477db114a79313 (patch) | |
tree | 2f64e5335d68cc5a4d0ed7b1b6218b5d89607f60 /libparted/labels/vtoc.c | |
parent | 3e3eda0ef42443fdec9336bb03ec00865686f372 (diff) | |
parent | 78a2b090920ca7c01b282869162fa020390915c1 (diff) | |
download | parted-3281e2847dc0e460e71feabc1e477db114a79313.tar.gz |
Merge branch 'master' of git+ssh://rishi-guest@git.debian.org/git/parted/parted
Diffstat (limited to 'libparted/labels/vtoc.c')
-rw-r--r-- | libparted/labels/vtoc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libparted/labels/vtoc.c b/libparted/labels/vtoc.c index 5898573..bd2c905 100644 --- a/libparted/labels/vtoc.c +++ b/libparted/labels/vtoc.c @@ -19,7 +19,7 @@ # define _(String) (String) #endif /* ENABLE_NLS */ -static unsigned char EBCtoASC[256] = +static const unsigned char EBCtoASC[256] = { /* 0x00 NUL SOH STX ETX *SEL HT *RNL DEL */ 0x00, 0x01, 0x02, 0x03, 0x07, 0x09, 0x07, 0x7F, @@ -91,7 +91,7 @@ static unsigned char EBCtoASC[256] = 0x38, 0x39, 0x07, 0x07, 0x9A, 0x07, 0x07, 0x07 }; -static unsigned char ASCtoEBC[256] = +static const unsigned char ASCtoEBC[256] = { /*00 NL SH SX EX ET NQ AK BL */ 0x00, 0x01, 0x02, 0x03, 0x37, 0x2D, 0x2E, 0x2F, |