Skip to content

Commit

Permalink
compression: fix wrong parameters for find_export() call
Browse files Browse the repository at this point in the history
  • Loading branch information
rvlad-patrascu authored and liviuchircu committed Apr 4, 2019
1 parent 0b48856 commit b742b4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/compression/compression_api.h
Expand Up @@ -50,7 +50,7 @@ static inline int load_compression_api(compression_api_t* api )
load_compression_f load_compression;

/* import the TM auto-loading function */
if ( !(load_compression=(load_compression_f)find_export("load_compression", 0, 0))) {
if ( !(load_compression=(load_compression_f)find_export("load_compression", 0))) {
LM_ERR("failed to import load_compression\n");
return -1;
}
Expand Down

0 comments on commit b742b4a

Please sign in to comment.