-RRDtool git - 2022-04-08
+RRDtool git - 2022-04-28
==========================
Bugfixes
--------
+* Suppress warnings of implicit fall through <youpong>
* Update tarball download link in doc <c72578>
* Fix unsigned integer overflow in rrdtool first. Add test for rrd_first() <c72578>
* Fix tests under MSYS2 (Windows) <c72578>
// Handle optional sign
negative = 0;
switch (*p) {
- case '-': negative = 1; // Fall through to increment position
- case '+': p++;
+ case '-':
+ negative = 1;
+ /* fall through */
+ case '+':
+ p++;
}
number = 0.;
// Handle optional sign
negative = 0;
switch (*++p) {
- case '-': negative = 1; // Fall through to increment pos
- case '+': p++;
+ case '-':
+ negative = 1;
+ /* fall through */
+ case '+':
+ p++;
}
// Process string of digits