Author: twists
Date: Sat Jun 6 21:43:22 2009
New Revision: 753
Modified:
trunk/bin/nytprofcsv
trunk/bin/nytprofhtml
Log:
prefer usage() to &usage because we're not using any magic
Modified: trunk/bin/nytprofcsv
==============================================================================
--- trunk/bin/nytprofcsv (original)
+++ trunk/bin/nytprofcsv Sat Jun 6 21:43:22 2009
@@ -35,7 +35,7 @@
GetOptions(\%opt, qw/file|f=s delete|d out|o=s help|h delim=s annotated|
a/) or exit 1;
if (defined($opt{help})) {
- &usage;
+ usage();
exit;
}
Modified: trunk/bin/nytprofhtml
==============================================================================
--- trunk/bin/nytprofhtml (original)
+++ trunk/bin/nytprofhtml Sat Jun 6 21:43:22 2009
@@ -49,7 +49,7 @@
GetOptions(\%opt, qw/file|f=s delete|d out|o=s lib|l=s help|h open/) or
exit 1;
if (defined($opt{help})) {
- &usage;
+ usage();
exit;
}
--~--~---------~--~----~------------~-------~--~----~
You've received this message because you are subscribed to
the Devel::NYTProf Development User group.
Group hosted at: http://groups.google.com/group/develnytprof-dev
Project hosted at: http://perl-devel-nytprof.googlecode.com
CPAN distribution: http://search.cpan.org/dist/Devel-NYTProf
To post, email: [email protected]
To unsubscribe, email: [email protected]
-~----------~----~----~----~------~----~------~--~---