diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-07-06 13:48:01 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-07-06 13:48:01 +0200 |
commit | f5066527806da7bb9164d1537b71a94f9f1fa2df (patch) | |
tree | c67f7670fa4d48019225b42a473a2aa8346e30e6 | |
parent | 4c1582cf2e275af7c0f4a2c1a397fed5b68d31d5 (diff) | |
download | nihav-f5066527806da7bb9164d1537b71a94f9f1fa2df.tar.gz |
qtrle: fix 32-bit test
-rw-r--r-- | nihav-qt/src/codecs/rle.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nihav-qt/src/codecs/rle.rs b/nihav-qt/src/codecs/rle.rs index 0d3ed06..a318fb6 100644 --- a/nihav-qt/src/codecs/rle.rs +++ b/nihav-qt/src/codecs/rle.rs @@ -618,6 +618,6 @@ mod test { [0xe82390cf, 0xfaceab34, 0xcc857b2f, 0xed47f125], [0xe82390cf, 0xfaceab34, 0xcc857b2f, 0xed47f125], [0xe82390cf, 0xfaceab34, 0xcc857b2f, 0xed47f125], - [0xd453e404, 0x6418f0a2, 0x2a4008dc, 0x09db5c72]])); + [0xe67d4be5, 0xe41ce60e, 0x4e6912c3, 0xc96dc521]])); } } |