]> granicus.if.org Git - openjpeg/commitdiff
[trunk] Fix warning for no previous prototype by using static function
authorMathieu Malaterre <mathieu.malaterre@gmail.com>
Mon, 15 Oct 2012 07:31:05 +0000 (07:31 +0000)
committerMathieu Malaterre <mathieu.malaterre@gmail.com>
Mon, 15 Oct 2012 07:31:05 +0000 (07:31 +0000)
src/lib/openjp2/jpt.c
src/lib/openjp2/t1_generate_luts.c

index a2566ea887252c6f707a3a854ab122168eee85e2..89b7565ef1e3c782d3d09f768e943b46dfcc0d58 100644 (file)
@@ -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         */
index 65b0e4f06280aa0b03cbf00d5d741bcb97abf44b..d18432489392dbcf3cb12fc9ff968e008cbed5cd 100644 (file)
@@ -170,7 +170,7 @@ static int t1_init_spb(int f) {
        return n;
 }
 
-void dump_array16(int array[],int size){
+static void dump_array16(int array[],int size){
        int i;
        --size;
        for (i = 0; i < size; ++i) {