Fix Clang static analyzer warnings about never read values

This commit is contained in:
Miroslav Lichvar
2013-10-07 16:10:25 +02:00
parent d5a9c1535e
commit 922e2fe23b
3 changed files with 5 additions and 4 deletions

View File

@@ -631,7 +631,7 @@ SST_SlewSamples(SST_Stats inst, struct timeval *when, double dfreq, double doffs
i, UTI_TimevalToString(&prev), UTI_TimevalToString(sample),
prev_offset, inst->offsets[i]);
#else
(void)prev_offset;
(void)prev; (void)prev_offset;
#endif
}
@@ -650,7 +650,7 @@ SST_SlewSamples(SST_Stats inst, struct timeval *when, double dfreq, double doffs
prev_offset, inst->estimated_offset,
1.0e6*prev_freq, 1.0e6*inst->estimated_frequency);
#else
(void)prev; (void)prev_freq;
(void)prev; (void)prev_offset; (void)prev_freq;
#endif
}