]> git.draconx.ca Git - dxcommon.git/commit
copysym: Fix pointer qualifier mismatch.
authorNick Bowler <nbowler@draconx.ca>
Fri, 16 Jun 2023 04:01:35 +0000 (00:01 -0400)
committerNick Bowler <nbowler@draconx.ca>
Fri, 16 Jun 2023 04:01:35 +0000 (00:01 -0400)
commit1321031cabbb1f9c7ef41f94a9f897bcf564594a
tree5e5d088289479467fb8cfd4f77bba9ec12248e03
parentf1527e8c5958c25abb54818a2e9618a85a75bec0
copysym: Fix pointer qualifier mismatch.

The "const void *" in the search function can't be directly assigned to
the "const char (*)[5]" variable, due to the differently-qualified
pointer target types.  Let's just cast off that qualifier, shall we?
src/copysym.c