diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-05-09 23:48:01 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-05-09 23:48:01 +0000 |
commit | 55912afd6957d63e1b84134fc800799628c69354 (patch) | |
tree | 60de5eea91a5bdc7f58c4f1188959eecb98977a0 /utils | |
parent | 8c2a8a257639f401933e7a13c7f025f75a4689bf (diff) |
(main) [current_tty_name]: Remove `const' keyword to avoid type clash.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -436,7 +436,7 @@ main(int argc, char *argv[]) } /* Returns the name of the current controlling terminal. */ - static const char *current_tty_name() + static char *current_tty_name() { error_t err; struct ps_tty *tty; |