summaryrefslogtreecommitdiff
path: root/erts/etc/win32/cygwin_tools/vc/coffix.c
diff options
context:
space:
mode:
Diffstat (limited to 'erts/etc/win32/cygwin_tools/vc/coffix.c')
-rw-r--r--erts/etc/win32/cygwin_tools/vc/coffix.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/erts/etc/win32/cygwin_tools/vc/coffix.c b/erts/etc/win32/cygwin_tools/vc/coffix.c
index bf1096c425..3221ad6d85 100644
--- a/erts/etc/win32/cygwin_tools/vc/coffix.c
+++ b/erts/etc/win32/cygwin_tools/vc/coffix.c
@@ -1,7 +1,7 @@
/*
* %CopyrightBegin%
*
- * Copyright Ericsson AB 1999-2016. All Rights Reserved.
+ * Copyright Ericsson AB 1999-2021. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,7 +43,7 @@ static int v_printf(char *format, ...);
char *progname;
-int verbouse = 0;
+int verbose = 0;
int main(int argc, char **argv)
{
@@ -66,7 +66,7 @@ int main(int argc, char **argv)
break;
case 'v':
case 'V':
- verbouse = 1;
+ verbose = 1;
default:
fprintf(stderr, "%s: unknown option %s\n", progname, argv[findex]);
break;
@@ -152,7 +152,7 @@ static int v_printf(char *format, ...)
{
va_list ap;
int ret = 0;
- if (verbouse) {
+ if (verbose) {
va_start(ap, format);
ret = vfprintf(stdout, format, ap);
va_end(ap);