fix gcc 4.8 warnings

LGTM=rsc
R=rsc
https://codereview.appspot.com/33240044
This commit is contained in:
David du Colombier 2014-03-03 22:30:34 +01:00
parent 24b8994d3d
commit 63002b3e5a
6 changed files with 5 additions and 15 deletions

View file

@ -242,9 +242,8 @@ runeout(Rune rune) {
void
specialout(char *stoken) {
Rune rune;
int i;
i = chartorune(&rune, stoken);
chartorune(&rune, stoken);
glyphout(rune, stoken, TRUE);
}