diff options
Diffstat (limited to 'src/sysdep.c')
-rw-r--r-- | src/sysdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysdep.c b/src/sysdep.c index 29e396c914d..afab85439f3 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -851,7 +851,7 @@ init_sys_modes (struct tty_display_info *tty_out) return; /* The tty is suspended. */ if (! tty_out->old_tty) - tty_out->old_tty = (struct emacs_tty *) xmalloc (sizeof (struct emacs_tty)); + tty_out->old_tty = xmalloc (sizeof (struct emacs_tty)); emacs_get_tty (fileno (tty_out->input), tty_out->old_tty); |