Forgot to rename the decoder custom dictionary func
authorQuim Rovira <quim@rovira.cat>
Sat, 13 Aug 2016 12:30:35 +0000 (14:30 +0200)
committerQuim Rovira <quim@rovira.cat>
Sat, 13 Aug 2016 12:30:35 +0000 (14:30 +0200)
Brotli.xs
lib/IO/Uncompress/Brotli.pm

index b7f33d6012844a79533460534f8c06c40c7506af..a14b828c089dc170df4e576f32b2d8da4b7b3fbb 100644 (file)
--- a/Brotli.xs
+++ b/Brotli.xs
@@ -69,7 +69,7 @@ SV* BrotliDecoderDecompressStream(state, in)
   OUTPUT:
     RETVAL
 
-void BrotliSetCustomDictionary(state, dict)
+void BrotliDecoderSetCustomDictionary(state, dict)
     SV* state
     SV* dict
   PREINIT:
index 2f37d8fb758f37f1d2202b60f2f610d30df9e6d5..f4b8bdb0eb6f566d2fbd9c68783eaa48a49c5b8e 100644 (file)
@@ -32,7 +32,7 @@ sub decompress {
 # Untested, probably not working
 sub set_dictionary {
        my ($self, $dict) = @_;
-       BrotliSetCustomDictionary($$self, $dict)
+       BrotliDecoderSetCustomDictionary($$self, $dict)
 }
 
 1;
This page took 0.011626 seconds and 4 git commands to generate.