* Explain an integer-valued property. */
| 5578 | * Explain an integer-valued property. |
| 5579 | */ |
| 5580 | void |
| 5581 | ExplainPropertyInteger(const char *qlabel, const char *unit, int64 value, |
| 5582 | ExplainState *es) |
| 5583 | { |
| 5584 | char buf[32]; |
| 5585 | |
| 5586 | snprintf(buf, sizeof(buf), INT64_FORMAT, value); |
| 5587 | ExplainProperty(qlabel, unit, buf, true, es); |
| 5588 | } |
| 5589 | |
| 5590 | /* |
| 5591 | * Explain an unsigned integer-valued property. |
no test coverage detected