summaryrefslogtreecommitdiff
path: root/get_sloc
diff options
context:
space:
mode:
authorDavid A. Wheeler <dwheeler@dwheeler.com>2013-09-02 18:07:15 -0400
committerDavid A. Wheeler <dwheeler@dwheeler.com>2013-09-02 18:07:15 -0400
commitb01dd02bf67b722fb76b00f8750b1e2ee26db7e1 (patch)
treecbbbebef56704c7eb237b771fa737b5a35cb74c4 /get_sloc
parent5c545e92fb2c41ca6c8d5e8ef3cfb8d5babb9107 (diff)
downloadsloccount-git-b01dd02bf67b722fb76b00f8750b1e2ee26db7e1.tar.gz
Put verbose messages to STDERR [from Dirk Jagmann]
- Send verbos messages to STDERR, not stdout. - https://sourceforge.net/p/sloccount/patches/5/
Diffstat (limited to 'get_sloc')
-rwxr-xr-xget_sloc13
1 files changed, 6 insertions, 7 deletions
diff --git a/get_sloc b/get_sloc
index f590a8e..9fdd3e4 100755
--- a/get_sloc
+++ b/get_sloc
@@ -535,10 +535,9 @@ if ($computing_sloc) {
print "Total Number of Files = $grand_total_sloc\n";
print "Total Number of Source Code Files = $grand_total_lang_sloc\n";
}
-print "SLOCCount, Copyright (C) 2001-2004 David A. Wheeler\n";
-print "SLOCCount is Open Source Software/Free Software, licensed under the GNU GPL.\n";
-print "SLOCCount comes with ABSOLUTELY NO WARRANTY, and you are welcome to\n";
-print "redistribute it under certain conditions as specified by the GNU GPL license;\n";
-print "see the documentation for details.\n";
-print "Please credit this data as \"generated using David A. Wheeler's 'SLOCCount'.\"\n";
-
+print STDERR "SLOCCount, Copyright (C) 2001-2004 David A. Wheeler\n";
+print STDERR "SLOCCount is Open Source Software/Free Software, licensed under the GNU GPL.\n";
+print STDERR "SLOCCount comes with ABSOLUTELY NO WARRANTY, and you are welcome to\n";
+print STDERR "redistribute it under certain conditions as specified by the GNU GPL license;\n";
+print STDERR "see the documentation for details.\n";
+print STDERR "Please credit this data as \"generated using David A. Wheeler's 'SLOCCount'.\"\n";