aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/frame.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index 9440ec1..fce039d 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -288,7 +288,8 @@ void wrap_paragraph(Paragraph *para, PangoContext *pc, double w)
/* Allocate the complete text */
text = malloc(total_len+1);
if ( text == NULL ) {
- fprintf(stderr, "Couldn't allocate combined text\n");
+ fprintf(stderr, "Couldn't allocate combined text (%lli)\n",
+ (long long int)total_len);
return;
}