* src/fmt.c (prefix, max_width): Initialize variables.
(main): Remove unnecessary initializations.
static bool uniform;
/* Prefix minus leading and trailing spaces (default ""). */
-static char const *prefix;
+static char const *prefix = "";
/* User-supplied maximum line width (default WIDTH). The only output
lines longer than this will each comprise a single word. */
-static int max_width;
+static int max_width = WIDTH;
/* Values derived from the option values. */
atexit (close_stdout);
- crown = tagged = split = uniform = false;
- max_width = WIDTH;
- prefix = "";
- prefix_length = prefix_lead_space = prefix_full_length = 0;
-
if (argc > 1 && argv[1][0] == '-' && c_isdigit (argv[1][1]))
{
/* Old option syntax; a dash followed by one or more digits. */