Skip to content

Dev #101

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 11, 2017
Merged

Dev #101

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update tt_text.c
Fix truncation warnings from GCC 7.1
  • Loading branch information
DwaineGarden authored May 16, 2017
commit cd564ae398cbcd28f738cb332f021a5aebfa8fab
2 changes: 1 addition & 1 deletion tt_text.c
Original file line number Diff line number Diff line change
Expand Up @@ -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, "");
Expand Down