top: eliminate a couple of warnings of -Wunused-result
Signed-off-by: Jim Warner <james.warner@comcast.net>
This commit is contained in:
parent
c314f9f953
commit
a24b369132
@ -3238,8 +3238,7 @@ static const char *config_file (FILE *fp, const char *name, float *delay) {
|
|||||||
const char *p = NULL;
|
const char *p = NULL;
|
||||||
|
|
||||||
p = fmtmk(N_fmt(RC_bad_files_fmt), name);
|
p = fmtmk(N_fmt(RC_bad_files_fmt), name);
|
||||||
if (fgets(fbuf, sizeof(fbuf), fp)) // ignore eyecatcher
|
(void)fgets(fbuf, sizeof(fbuf), fp); // ignore eyecatcher
|
||||||
; // avoid -Wunused-result
|
|
||||||
if (6 != fscanf(fp
|
if (6 != fscanf(fp
|
||||||
, "Id:%c, Mode_altscr=%d, Mode_irixps=%d, Delay_time=%d.%d, Curwin=%d\n"
|
, "Id:%c, Mode_altscr=%d, Mode_irixps=%d, Delay_time=%d.%d, Curwin=%d\n"
|
||||||
, &Rc.id, &Rc.mode_altscr, &Rc.mode_irixps, &tmp_whole, &tmp_fract, &i)) {
|
, &Rc.id, &Rc.mode_altscr, &Rc.mode_irixps, &tmp_whole, &tmp_fract, &i)) {
|
||||||
@ -3329,9 +3328,8 @@ static const char *config_file (FILE *fp, const char *name, float *delay) {
|
|||||||
} // end: for (GROUPSMAX)
|
} // end: for (GROUPSMAX)
|
||||||
|
|
||||||
// any new addition(s) last, for older rcfiles compatibility...
|
// any new addition(s) last, for older rcfiles compatibility...
|
||||||
if (fscanf(fp, "Fixed_widest=%d, Summ_mscale=%d, Task_mscale=%d, Zero_suppress=%d\n"
|
(void)fscanf(fp, "Fixed_widest=%d, Summ_mscale=%d, Task_mscale=%d, Zero_suppress=%d\n"
|
||||||
, &Rc.fixed_widest, &Rc.summ_mscale, &Rc.task_mscale, &Rc.zero_suppress))
|
, &Rc.fixed_widest, &Rc.summ_mscale, &Rc.task_mscale, &Rc.zero_suppress);
|
||||||
; // avoid -Wunused-result
|
|
||||||
if (Rc.fixed_widest < -1 || Rc.fixed_widest > SCREENMAX)
|
if (Rc.fixed_widest < -1 || Rc.fixed_widest > SCREENMAX)
|
||||||
Rc.fixed_widest = 0;
|
Rc.fixed_widest = 0;
|
||||||
if (Rc.summ_mscale < 0 || Rc.summ_mscale > SK_Eb)
|
if (Rc.summ_mscale < 0 || Rc.summ_mscale > SK_Eb)
|
||||||
|
Loading…
Reference in New Issue
Block a user