diff options
author | Calvin Morrison <calvin@pobox.com> | 2023-05-23 16:12:46 -0400 |
---|---|---|
committer | Calvin Morrison <calvin@pobox.com> | 2023-05-23 16:12:46 -0400 |
commit | 9a3cb7463685603856df5f63a7d003e88c298255 (patch) | |
tree | 10a852cdb2d4f96959d96518ccd6975e9854958c | |
parent | 141d5f110672352b1e4a5d4ef8a900166ac2901e (diff) |
-rw-r--r-- | fsbm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |