You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiling the plugin (from branch wirehsark-2.2) on my Linux system resulted in a few errors: sapdecompress.h:62:1: error: narrowing conversion of '-1' from 'int' to 'guint32 {aka unsigned int}'
By replacing -1 with 0xffffffff - 1 (same adjustment with the following lines) the code could be compiled.
The text was updated successfully, but these errors were encountered:
Thanks for reporting the issue! Indeed that was a warning that was since long time ago, but apparently your compiler flags were set to considered it an error. Anyway, check with the updated code to see if it's working now, I've replaced the entire use of value_string for decompression error codes, so those ugly conversions shouldn't be there anymore.
Compiling the plugin (from branch wirehsark-2.2) on my Linux system resulted in a few errors:
sapdecompress.h:62:1: error: narrowing conversion of '-1' from 'int' to 'guint32 {aka unsigned int}'
By replacing
-1
with0xffffffff - 1
(same adjustment with the following lines) the code could be compiled.The text was updated successfully, but these errors were encountered: