| 2742 | } |
| 2743 | |
| 2744 | static char *ppm_to_str(const tal_t *ctx, u32 ppm) |
| 2745 | { |
| 2746 | if (ppm == UINT_MAX) |
| 2747 | return tal_fmt(ctx, "max"); |
| 2748 | |
| 2749 | if (ppm % 10000) |
| 2750 | return tal_fmt(ctx, "%u.%04u%%", ppm / 10000, ppm % 10000); |
| 2751 | |
| 2752 | return tal_fmt(ctx, "%u%%", ppm / 10000); |
| 2753 | } |
| 2754 | |
| 2755 | char *splice_to_string(const tal_t *ctx, |
| 2756 | struct splice_script_result *result) |