diff options
Diffstat (limited to 'usr/src/tools/scripts/hdrchk.py')
-rw-r--r-- | usr/src/tools/scripts/hdrchk.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr/src/tools/scripts/hdrchk.py b/usr/src/tools/scripts/hdrchk.py index 7a165a40e5..0211673ea8 100644 --- a/usr/src/tools/scripts/hdrchk.py +++ b/usr/src/tools/scripts/hdrchk.py @@ -1,4 +1,4 @@ -#! /usr/bin/python +#! /usr/bin/python2.4 # # CDDL HEADER START # @@ -21,11 +21,9 @@ # # -# Copyright 2008 Sun Microsystems, Inc. All rights reserved. +# Copyright 2009 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" -# # # Check header files conform to ON standards. @@ -49,7 +47,7 @@ try: opts, args = getopt.getopt(sys.argv[1:], 'a') except getopt.GetoptError: usage() - sys.exit(2) + sys.exit(2) lenient = False for opt, arg in opts: |