From 9e0f140f0a50688d36928feb51b0719f94c7db53 Mon Sep 17 00:00:00 2001 From: Greg Ercolano Date: Wed, 1 Sep 2021 10:05:36 -0700 Subject: [PATCH] Remove stray tab --- examples/table-sort.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/table-sort.cxx b/examples/table-sort.cxx index bb6898290..ec3498c83 100644 --- a/examples/table-sort.cxx +++ b/examples/table-sort.cxx @@ -224,7 +224,7 @@ void MyTable::load_command(const char *cmd) { for ( int line=0; fgets(s, sizeof(s)-1, fp); line++ ) { #ifdef _WIN32 // WINDOWS - if ( line < 5 ) continue; // skip DIR's 5 line header + if ( line < 5 ) continue; // skip DIR's 5 line header #else // UNIX if ( line==0 && strncmp(s,"total ",6)==0) continue;