summaryrefslogtreecommitdiff
path: root/libphobos/src/std/format.d
diff options
context:
space:
mode:
Diffstat (limited to 'libphobos/src/std/format.d')
-rw-r--r--libphobos/src/std/format.d4
1 files changed, 2 insertions, 2 deletions
diff --git a/libphobos/src/std/format.d b/libphobos/src/std/format.d
index 64b1bd30e2c..17e5906baf7 100644
--- a/libphobos/src/std/format.d
+++ b/libphobos/src/std/format.d
@@ -5199,7 +5199,7 @@ body
}
debug (unformatRange) printf("\t");
debug (unformatRange) if (!input.empty) printf("input.front = %c, ", input.front);
- debug (unformatRange) printf("cont = %.*s\n", cont);
+ debug (unformatRange) printf("cont = %.*s\n", cast(int) cont.length, cont.ptr);
bool checkEnd()
{
@@ -5246,7 +5246,7 @@ body
auto sep = spec.sep !is null ? spec.sep
: fmt.trailing;
debug (unformatRange) {
- if (!sep.empty && !input.empty) printf("-> %c, sep = %.*s\n", input.front, sep);
+ if (!sep.empty && !input.empty) printf("-> %c, sep = %.*s\n", input.front, cast(int) sep.length, sep.ptr);
else printf("\n");
}