diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-10-15 15:47:56 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-10-15 15:47:56 +0000 |
| commit | 98682e1073211000495aa378e7da5bfb69b225c9 (patch) | |
| tree | f0879b27e100b989183e787898e52ecd23396751 /src/lib/openmj2 | |
| parent | d6bcb8b7e074c4543ee0243b355f8b3ff0566c9d (diff) | |
[trunk] Remove some warnings about missing prototypes (gcc)
Diffstat (limited to 'src/lib/openmj2')
| -rw-r--r-- | src/lib/openmj2/jpt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/openmj2/jpt.c b/src/lib/openmj2/jpt.c index a2566ea8..89b7565e 100644 --- a/src/lib/openmj2/jpt.c +++ b/src/lib/openmj2/jpt.c @@ -34,7 +34,7 @@ * Store information (7 bits) in value * */ -unsigned int jpt_read_VBAS_info(opj_cio_t *cio, unsigned int value) { +static unsigned int jpt_read_VBAS_info(opj_cio_t *cio, unsigned int value) { unsigned char elmt; elmt = cio_read(cio, 1); @@ -69,7 +69,7 @@ void jpt_init_msg_header(opj_jpt_msg_header_t * header) { * Only parameters always present in message header * */ -void jpt_reinit_msg_header(opj_jpt_msg_header_t * header) { +static void jpt_reinit_msg_header(opj_jpt_msg_header_t * header) { header->Id = 0; /* In-class Identifier */ header->last_byte = 0; /* Last byte information */ header->Msg_offset = 0; /* Message offset */ |
