From cd564ae398cbcd28f738cb332f021a5aebfa8fab Mon Sep 17 00:00:00 2001
From: Dwaine Garden <DwaineGarden@rogers.com>
Date: Tue, 16 May 2017 00:05:31 -0400
Subject: [PATCH] Update tt_text.c

Fix truncation warnings from GCC 7.1
---
 tt_text.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tt_text.c b/tt_text.c
index 8cd7ba8..9ca7f46 100644
--- a/tt_text.c
+++ b/tt_text.c
@@ -468,7 +468,7 @@ int tt_text_to_call10 (const char *text, int quiet, char *buttons)
 	int errors = 0;
 	int found;
 	char padded[8];
-	char stemp[8];
+	char stemp[11];
 
 
 	strcpy (buttons, "");