diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-23 16:46:58 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-23 16:46:58 +0100 |
commit | 7da368d66af2d4a6b73ffd6722c1f0a8de4d9d71 (patch) | |
tree | b550feb35bfdcd06babe8abad310ef571fde3481 /src | |
parent | b7e6c5c09eaa2a1370e657351ef15c35bac82da3 (diff) | |
download | xine-lib-7da368d66af2d4a6b73ffd6722c1f0a8de4d9d71.tar.gz xine-lib-7da368d66af2d4a6b73ffd6722c1f0a8de4d9d71.tar.bz2 |
Mark rm_header and pnm_data_header static.
Diffstat (limited to 'src')
-rw-r--r-- | src/input/pnm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/pnm.c b/src/input/pnm.c index 3cb36ac3f..564151279 100644 --- a/src/input/pnm.c +++ b/src/input/pnm.c @@ -92,7 +92,7 @@ struct pnm_s { /* header of rm files */ #define RM_HEADER_SIZE 0x12 -const unsigned char rm_header[]={ +static const unsigned char rm_header[]={ 0x2e, 0x52, 0x4d, 0x46, /* object_id ".RMF" */ 0x00, 0x00, 0x00, 0x12, /* header_size 0x12 */ 0x00, 0x00, /* object_version 0x00 */ @@ -102,7 +102,7 @@ const unsigned char rm_header[]={ /* data chunk header */ #define PNM_DATA_HEADER_SIZE 18 -const unsigned char pnm_data_header[]={ +static const unsigned char pnm_data_header[]={ 'D','A','T','A', 0,0,0,0, /* data chunk size */ 0,0, /* object version */ |