From 28f6d2508f973de1103f56bdfc21f27354e37e47 Mon Sep 17 00:00:00 2001 From: DTB Date: Wed, 28 Aug 2024 21:36:32 -0600 Subject: [PATCH] stris(1): fix silly mistakes --- src/stris.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stris.rs b/src/stris.rs index e0c2dd4..c9f1b22 100644 --- a/src/stris.rs +++ b/src/stris.rs @@ -19,7 +19,7 @@ use std::{ env::args, - process::ExitCode + process::ExitCode, }; extern crate getopt; @@ -30,7 +30,7 @@ use sysexits::EX_USAGE; struct Reqs { ascii: bool, blank: bool, cntrl: bool, digit: bool, lower: bool, - upper: bool, inuse: bool, extra: String::default() + upper: bool, inuse: bool, extra: String } fn usage(s: &str) -> ExitCode {