forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit3a60c8f
committed
Distinguish printf-like functions that support %m from those that don't.
The elog/ereport family of functions certainly support the %m format spec,because they implement it "by hand". But elsewhere we have printf wrappersthat might or might not allow it depending on whether the platform's printfdoes. (Most non-glibc versions don't, and notably, src/port/snprintf.cdoesn't.) Hence, rather than using the gnu_printf format archetypeinterchangeably for all these functions, use it only for elog/ereport.This will allow us to get compiler warnings for mistakes like the onesfixed in commita13b47a, at least on platforms where printf doesn'ttake %m and gcc is correctly configured to know it. (Unfortunately,that won't happen on Linux, nor on macOS according to my testing.It remains to be seen what the buildfarm's gcc-on-Windows animals willthink of this, but we may well have to rely on less-popular platformsto warn us about unportable code of this kind.)Discussion:https://postgr.es/m/2975.1526862605@sss.pgh.pa.us1 parent5c047fd commit3a60c8f
File tree
5 files changed
+32
-28
lines changed- config
- src/include
- utils
5 files changed
+32
-28
lines changedLines changed: 7 additions & 7 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
19 | 19 |
| |
20 | 20 |
| |
21 | 21 |
| |
22 |
| - | |
23 |
| - | |
24 |
| - | |
25 |
| - | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
26 | 26 |
| |
27 |
| - | |
| 27 | + | |
28 | 28 |
| |
29 | 29 |
| |
30 | 30 |
| |
| |||
34 | 34 |
| |
35 | 35 |
| |
36 | 36 |
| |
37 |
| - | |
38 |
| - | |
| 37 | + | |
| 38 | + | |
39 | 39 |
| |
40 | 40 |
| |
41 | 41 |
| |
|
Lines changed: 3 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
13362 | 13362 |
| |
13363 | 13363 |
| |
13364 | 13364 |
| |
13365 |
| - | |
13366 |
| - | |
| 13365 | + | |
| 13366 | + | |
13367 | 13367 |
| |
13368 | 13368 |
| |
13369 | 13369 |
| |
| |||
13394 | 13394 |
| |
13395 | 13395 |
| |
13396 | 13396 |
| |
13397 |
| - | |
| 13397 | + | |
13398 | 13398 |
| |
13399 | 13399 |
| |
13400 | 13400 |
| |
|
Lines changed: 5 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
126 | 126 |
| |
127 | 127 |
| |
128 | 128 |
| |
129 |
| - | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
130 | 133 |
| |
131 | 134 |
| |
132 | 135 |
| |
| 136 | + | |
133 | 137 |
| |
134 | 138 |
| |
135 | 139 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
809 | 809 |
| |
810 | 810 |
| |
811 | 811 |
| |
812 |
| - | |
813 |
| - | |
| 812 | + | |
| 813 | + | |
814 | 814 |
| |
815 | 815 |
| |
816 | 816 |
| |
|
Lines changed: 15 additions & 15 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
133 | 133 |
| |
134 | 134 |
| |
135 | 135 |
| |
136 |
| - | |
137 |
| - | |
| 136 | + | |
| 137 | + | |
138 | 138 |
| |
139 | 139 |
| |
140 |
| - | |
| 140 | + | |
141 | 141 |
| |
142 |
| - | |
143 |
| - | |
| 142 | + | |
| 143 | + | |
144 | 144 |
| |
145 |
| - | |
| 145 | + | |
146 | 146 |
| |
147 | 147 |
| |
148 | 148 |
| |
149 |
| - | |
| 149 | + | |
150 | 150 |
| |
151 | 151 |
| |
152 |
| - | |
| 152 | + | |
153 | 153 |
| |
154 |
| - | |
| 154 | + | |
155 | 155 |
| |
156 | 156 |
| |
157 | 157 |
| |
| |||
165 | 165 |
| |
166 | 166 |
| |
167 | 167 |
| |
168 |
| - | |
| 168 | + | |
169 | 169 |
| |
170 | 170 |
| |
171 | 171 |
| |
| |||
222 | 222 |
| |
223 | 223 |
| |
224 | 224 |
| |
225 |
| - | |
| 225 | + | |
226 | 226 |
| |
227 | 227 |
| |
228 | 228 |
| |
229 | 229 |
| |
230 | 230 |
| |
231 |
| - | |
| 231 | + | |
232 | 232 |
| |
233 | 233 |
| |
234 | 234 |
| |
| |||
407 | 407 |
| |
408 | 408 |
| |
409 | 409 |
| |
410 |
| - | |
411 |
| - | |
412 |
| - | |
| 410 | + | |
| 411 | + | |
| 412 | + | |
413 | 413 |
| |
414 | 414 |
| |
415 | 415 |
| |
|
0 commit comments
Comments
(0)