summaryrefslogtreecommitdiff
path: root/ruby.c
diff options
context:
space:
mode:
authorTakashi Kokubun <[email protected]>2023-10-04 09:40:08 -0700
committerTakashi Kokubun <[email protected]>2023-10-04 10:25:46 -0700
commit7db6f448ed9ba6a5c27a750416cb6877711a7c05 (patch)
tree7bb908aa76768ef892324d572b18ac20eefb1f63 /ruby.c
parent577ff858bce3c9620c763d6481b082253f7e2bfd (diff)
Use a better variable name for w
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby.c b/ruby.c
index 64120e21f3..9d9ba316cb 100644
--- a/ruby.c
+++ b/ruby.c
@@ -296,12 +296,12 @@ show_usage_line(const struct ruby_opt_message *m,
void
ruby_show_usage_line(const char *name, const char *secondary, const char *description,
- int help, int highlight, unsigned int w, int columns)
+ int help, int highlight, unsigned int width, int columns)
{
unsigned int namelen = (unsigned int)strlen(name);
unsigned int secondlen = (secondary ? (unsigned int)strlen(secondary) : 0);
show_usage_part(name, namelen, secondary, secondlen,
- description, help, highlight, w, columns);
+ description, help, highlight, width, columns);
}
static void