cabinet: Declare a function static.
This commit is contained in:
parent
76f4b9b053
commit
9a079a64e6
|
@ -653,7 +653,4 @@ typedef struct {
|
|||
struct FILELIST *FilterList;
|
||||
} SESSION;
|
||||
|
||||
/* from fdi.c */
|
||||
int make_decode_table(cab_ULONG nsyms, cab_ULONG nbits, const cab_UBYTE *length, cab_UWORD *table);
|
||||
|
||||
#endif /* __WINE_CABINET_H */
|
||||
|
|
|
@ -220,7 +220,8 @@ static void QTMupdatemodel(struct QTMmodel *model, int sym) {
|
|||
* OK: 0
|
||||
* error: 1
|
||||
*/
|
||||
int make_decode_table(cab_ULONG nsyms, cab_ULONG nbits, const cab_UBYTE *length, cab_UWORD *table) {
|
||||
static int make_decode_table(cab_ULONG nsyms, cab_ULONG nbits,
|
||||
const cab_UBYTE *length, cab_UWORD *table) {
|
||||
register cab_UWORD sym;
|
||||
register cab_ULONG leaf;
|
||||
register cab_UBYTE bit_num = 1;
|
||||
|
|
Loading…
Reference in New Issue