diff options
author | wkj <devnull@localhost> | 2004-06-25 13:56:22 +0000 |
---|---|---|
committer | wkj <devnull@localhost> | 2004-06-25 13:56:22 +0000 |
commit | 8414847a0709bcf83b2f0bc198a5390ab5db6072 (patch) | |
tree | 9ce5948bca04ab285fe66794a79fbc972f73f8da /src/cmd/samterm | |
parent | e915fe7c58cd2eefc8a876f40e4df3e55e6abc5f (diff) | |
download | plan9port-8414847a0709bcf83b2f0bc198a5390ab5db6072.tar.gz plan9port-8414847a0709bcf83b2f0bc198a5390ab5db6072.tar.bz2 plan9port-8414847a0709bcf83b2f0bc198a5390ab5db6072.zip |
Fix missing parameter type. From rob.
Diffstat (limited to 'src/cmd/samterm')
-rw-r--r-- | src/cmd/samterm/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/samterm/main.c b/src/cmd/samterm/main.c index 647696f7..9a485b51 100644 --- a/src/cmd/samterm/main.c +++ b/src/cmd/samterm/main.c @@ -443,7 +443,7 @@ flushtyping(int clearesc) #define RIGHTARROW Kright int -nontypingkey(c) +nontypingkey(int c) { return c==SCROLLKEY || c==BACKSCROLLKEY || c==LEFTARROW || c==RIGHTARROW |