mirror of
https://github.com/cryb-to/cryb-to.git
synced 2024-11-22 05:35:46 +00:00
Fix a cast that discards a const qualifier.
This commit is contained in:
parent
82f5c5cf77
commit
85defb9929
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ T_DEC(le, 64)
|
|||
uint##w##_t enc; \
|
||||
\
|
||||
cryb_##e##w##enc(&enc, e##w); \
|
||||
return (t_compare_x##w(*(uint##w##_t *)s##w, enc)); \
|
||||
return (t_compare_x##w(*(const uint##w##_t *)s##w, enc)); \
|
||||
}
|
||||
|
||||
T_ENC(be, 32)
|
||||
|
|
Loading…
Reference in a new issue