File tree Expand file tree Collapse file tree 2 files changed +14
-14
lines changed Expand file tree Collapse file tree 2 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ timestamp: 0
64
64
string: (not set)
65
65
abbrev: 7
66
66
verbose: 0
67
- quiet: no
67
+ quiet: 0
68
68
dry run: no
69
69
file: (not set)
70
70
EOF
@@ -164,7 +164,7 @@ timestamp: 0
164
164
string: 123
165
165
abbrev: 7
166
166
verbose: 2
167
- quiet: no
167
+ quiet: 0
168
168
dry run: yes
169
169
file: prefix/my.file
170
170
EOF
@@ -184,7 +184,7 @@ timestamp: 0
184
184
string: 321
185
185
abbrev: 10
186
186
verbose: 2
187
- quiet: no
187
+ quiet: 0
188
188
dry run: no
189
189
file: prefix/fi.le
190
190
EOF
@@ -212,7 +212,7 @@ timestamp: 0
212
212
string: 123
213
213
abbrev: 7
214
214
verbose: 0
215
- quiet: no
215
+ quiet: 0
216
216
dry run: no
217
217
file: (not set)
218
218
arg 00: a1
@@ -235,7 +235,7 @@ timestamp: 0
235
235
string: (not set)
236
236
abbrev: 7
237
237
verbose: 0
238
- quiet: no
238
+ quiet: 0
239
239
dry run: no
240
240
file: (not set)
241
241
EOF
@@ -264,7 +264,7 @@ timestamp: 0
264
264
string: 123
265
265
abbrev: 7
266
266
verbose: 0
267
- quiet: no
267
+ quiet: 0
268
268
dry run: no
269
269
file: (not set)
270
270
EOF
@@ -303,7 +303,7 @@ timestamp: 0
303
303
string: (not set)
304
304
abbrev: 7
305
305
verbose: 0
306
- quiet: no
306
+ quiet: 0
307
307
dry run: no
308
308
file: (not set)
309
309
arg 00: --quux
@@ -323,7 +323,7 @@ timestamp: 1
323
323
string: (not set)
324
324
abbrev: 7
325
325
verbose: 0
326
- quiet: yes
326
+ quiet: 1
327
327
dry run: no
328
328
file: (not set)
329
329
arg 00: foo
@@ -345,7 +345,7 @@ timestamp: 0
345
345
string: (not set)
346
346
abbrev: 7
347
347
verbose: 0
348
- quiet: no
348
+ quiet: 0
349
349
dry run: no
350
350
file: (not set)
351
351
EOF
@@ -374,7 +374,7 @@ timestamp: 0
374
374
string: (not set)
375
375
abbrev: 7
376
376
verbose: 0
377
- quiet: no
377
+ quiet: 0
378
378
dry run: no
379
379
file: (not set)
380
380
EOF
@@ -399,7 +399,7 @@ timestamp: 0
399
399
string: (not set)
400
400
abbrev: 7
401
401
verbose: 0
402
- quiet: no
402
+ quiet: 0
403
403
dry run: no
404
404
file: (not set)
405
405
EOF
@@ -430,7 +430,7 @@ timestamp: 0
430
430
string: (not set)
431
431
abbrev: 7
432
432
verbose: 0
433
- quiet: no
433
+ quiet: 0
434
434
dry run: no
435
435
file: (not set)
436
436
EOF
@@ -449,7 +449,7 @@ timestamp: 0
449
449
string: (not set)
450
450
abbrev: 7
451
451
verbose: 0
452
- quiet: no
452
+ quiet: 0
453
453
dry run: no
454
454
file: (not set)
455
455
EOF
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ int main(int argc, char **argv)
90
90
printf ("string: %s\n" , string ? string : "(not set)" );
91
91
printf ("abbrev: %d\n" , abbrev );
92
92
printf ("verbose: %d\n" , verbose );
93
- printf ("quiet: %s \n" , quiet ? "yes" : "no" );
93
+ printf ("quiet: %d \n" , quiet );
94
94
printf ("dry run: %s\n" , dry_run ? "yes" : "no" );
95
95
printf ("file: %s\n" , file ? file : "(not set)" );
96
96
You can’t perform that action at this time.
0 commit comments