Ignore:
Timestamp:
Nov 10, 2017 3:14:58 AM (6 years ago)
Author:
ming
Message:

Re #2059 (misc): Fixed possible function name clash with md5 due to non-static function.

Thanks to Luca Ceseroli for the report.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib-util/src/pjlib-util/md5.c

    r5544 r5688  
    3030#define byteReverse(buf, len)   /* Nothing */ 
    3131#else 
    32 void byteReverse(unsigned char *buf, unsigned longs); 
     32static void byteReverse(unsigned char *buf, unsigned longs); 
    3333 
    3434#ifndef ASM_MD5 
     
    3636 * Note: this code is harmless on little-endian machines. 
    3737 */ 
    38 void byteReverse(unsigned char *buf, unsigned longs) 
     38static void byteReverse(unsigned char *buf, unsigned longs) 
    3939{ 
    4040    pj_uint32_t t; 
Note: See TracChangeset for help on using the changeset viewer.