aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalvin Morrison <calvin@pobox.com>2023-05-23 16:12:46 -0400
committerCalvin Morrison <calvin@pobox.com>2023-05-23 16:12:46 -0400
commit9a3cb7463685603856df5f63a7d003e88c298255 (patch)
tree10a852cdb2d4f96959d96518ccd6975e9854958c
parent141d5f110672352b1e4a5d4ef8a900166ac2901e (diff)
there's no leading tabs in this fileHEADmaster
-rw-r--r--fsbm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fsbm.c b/fsbm.c
index 08aeb96..44f4b09 100644
--- a/fsbm.c
+++ b/fsbm.c
@@ -99,7 +99,7 @@ void print_stats() {
// Remove leading whitespace from the name
name = buf;
- while (*name == ' ' || *name == '\t') {
+ while (*name == ' ') {
name++;
}
len = name - buf;