diff options
author | H. Peter Anvin <hpa@linux.intel.com> | 2010-05-12 15:47:06 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2010-05-12 15:47:06 -0700 |
commit | f7c9d2bfbe074a26b2c87e711ef9b5f7f1fad579 (patch) | |
tree | d0640ac2027715cfedaf1a90ae6b50dcd26f473e | |
parent | 192b8c0509e81e10e35d1bae60bca1b1f41c5331 (diff) | |
download | syslinux-f7c9d2bfbe074a26b2c87e711ef9b5f7f1fad579.tar.gz syslinux-f7c9d2bfbe074a26b2c87e711ef9b5f7f1fad579.tar.xz syslinux-f7c9d2bfbe074a26b2c87e711ef9b5f7f1fad579.zip |
rosh.c: mark argument used
-Werror cleanup.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
-rw-r--r-- | com32/rosh/rosh.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/com32/rosh/rosh.c b/com32/rosh/rosh.c index aa3e4532..511fdff1 100644 --- a/com32/rosh/rosh.c +++ b/com32/rosh/rosh.c @@ -514,6 +514,8 @@ void rosh_more_buf(char *buf, int buflen, int rows, int cols) int inc; int i, numln; /* Index, Number of lines */ + (void)cols; + bufpos = 0; bufp = buf + bufpos; bufeol = bufp; |