Skip to content
Snippets Groups Projects
Commit ce2d61cc authored by Russell Bryant's avatar Russell Bryant
Browse files

suppress compiler warning on mac

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@13483 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent df09af8e
Branches
Tags
No related merge requests found
...@@ -1418,7 +1418,7 @@ term_echotc(EditLine *el, int argc, const char **argv) ...@@ -1418,7 +1418,7 @@ term_echotc(EditLine *el, int argc, const char **argv)
} }
(void) fprintf(el->el_outfile, fmtd, 0); (void) fprintf(el->el_outfile, fmtd, 0);
#else #else
(void) fprintf(el->el_outfile, fmtd, el->el_tty.t_speed); (void) fprintf(el->el_outfile, fmtd, (int) el->el_tty.t_speed);
#endif #endif
return (0); return (0);
} else if (strcmp(*argv, "rows") == 0 || strcmp(*argv, "lines") == 0) { } else if (strcmp(*argv, "rows") == 0 || strcmp(*argv, "lines") == 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment