forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit994d767
committed
Fix misuse of "const" qualifier.
"const foo *" is quite different from "foo * const".This code was evidently trying to avoid casting awayconst from the arguments, but entirely failed to do so.Per study of some buildfarm warnings from anole(which unfortunately are mostly ignorable, since itseems not to understand "restrict" very well).I'm surprised though that nothing else has complained.1 parent7e6124c commit994d767
1 file changed
+4
-4
lines changedLines changed: 4 additions & 4 deletions
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
Comments
(0)