Commit 994d767
committed
Fix misuse of "const" qualifier.
"const foo *" is quite different from "foo * const".
This code was evidently trying to avoid casting away
const from the arguments, but entirely failed to do so.
Per study of some buildfarm warnings from anole
(which unfortunately are mostly ignorable, since it
seems not to understand "restrict" very well).
I'm surprised though that nothing else has complained.1 parent 7e6124c commit 994d767
1 file changed
+4
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3793 | 3793 | | |
3794 | 3794 | | |
3795 | 3795 | | |
3796 | | - | |
3797 | | - | |
| 3796 | + | |
| 3797 | + | |
3798 | 3798 | | |
3799 | 3799 | | |
3800 | 3800 | | |
| |||
3808 | 3808 | | |
3809 | 3809 | | |
3810 | 3810 | | |
3811 | | - | |
3812 | | - | |
| 3811 | + | |
| 3812 | + | |
3813 | 3813 | | |
3814 | 3814 | | |
3815 | 3815 | | |
| |||
0 commit comments