Skip to content

Commit

Permalink
Dummy changes to restore buildability
Browse files Browse the repository at this point in the history
These other compression modules will be migrated shortly, losing
the changes introduced here.
  • Loading branch information
wferi authored and fabbione committed Nov 29, 2017
1 parent 884a1f9 commit e96a687
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion libknet/compress_lz4.c
Expand Up @@ -41,7 +41,7 @@ static int lz4_remap_symbols(knet_handle_t knet_h)
}

int lz4_load_lib(
knet_handle_t knet_h)
knet_handle_t knet_h, compress_model_t *dummy)
{
int err = 0, savederrno = 0;

Expand Down
3 changes: 2 additions & 1 deletion libknet/compress_lz4.h
Expand Up @@ -10,9 +10,10 @@
#define __KNET_COMPRESS_LZ4_H__

#include "internals.h"
#include "compress_model.h"

int lz4_load_lib(
knet_handle_t knet_h);
knet_handle_t knet_h, compress_model_t *dummy);

int lz4_val_level(
knet_handle_t knet_h,
Expand Down
2 changes: 1 addition & 1 deletion libknet/compress_lzma.c
Expand Up @@ -41,7 +41,7 @@ static int lzma_remap_symbols(knet_handle_t knet_h)
}

int lzma_load_lib(
knet_handle_t knet_h)
knet_handle_t knet_h, compress_model_t *dummy)
{
int err = 0, savederrno = 0;

Expand Down
3 changes: 2 additions & 1 deletion libknet/compress_lzma.h
Expand Up @@ -10,9 +10,10 @@
#define __KNET_COMPRESS_LZMA_H__

#include "internals.h"
#include "compress_model.h"

int lzma_load_lib(
knet_handle_t knet_h);
knet_handle_t knet_h, compress_model_t *dummy);

int lzma_val_level(
knet_handle_t knet_h,
Expand Down
2 changes: 1 addition & 1 deletion libknet/compress_lzo2.c
Expand Up @@ -41,7 +41,7 @@ static int lzo2_remap_symbols(knet_handle_t knet_h)
}

int lzo2_load_lib(
knet_handle_t knet_h)
knet_handle_t knet_h, compress_model_t *dummy)
{
int err = 0, savederrno = 0;

Expand Down
3 changes: 2 additions & 1 deletion libknet/compress_lzo2.h
Expand Up @@ -10,9 +10,10 @@
#define __KNET_COMPRESS_LZO2_H__

#include "internals.h"
#include "compress_model.h"

int lzo2_load_lib(
knet_handle_t knet_h);
knet_handle_t knet_h, compress_model_t *dummy);

int lzo2_is_init(
knet_handle_t knet_h,
Expand Down
2 changes: 1 addition & 1 deletion libknet/compress_zlib.c
Expand Up @@ -41,7 +41,7 @@ static int zlib_remap_symbols(knet_handle_t knet_h)
}

int zlib_load_lib(
knet_handle_t knet_h)
knet_handle_t knet_h, compress_model_t *dummy)
{
int err = 0, savederrno = 0;

Expand Down
3 changes: 2 additions & 1 deletion libknet/compress_zlib.h
Expand Up @@ -10,9 +10,10 @@
#define __KNET_COMPRESS_ZLIB_H__

#include "internals.h"
#include "compress_model.h"

int zlib_load_lib(
knet_handle_t knet_h);
knet_handle_t knet_h, compress_model_t *dummy);

int zlib_val_level(
knet_handle_t knet_h,
Expand Down

0 comments on commit e96a687

Please sign in to comment.