diff options
author | Bruce Momjian <bruce@momjian.us> | 2008-03-18 23:04:34 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2008-03-18 23:04:34 +0000 |
commit | 0939946a5e595b308fc8db260fb9826945b24c61 (patch) | |
tree | 85cf38697969239ba29beef47a768eab6fcf1632 /src | |
parent | 61d416e3b2b67138dc2c51d954b321c6db15e30f (diff) | |
download | postgresql-0939946a5e595b308fc8db260fb9826945b24c61.tar.gz postgresql-0939946a5e595b308fc8db260fb9826945b24c61.zip |
Add find_typedef comment.
Diffstat (limited to 'src')
-rwxr-xr-x | src/tools/find_typedef | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/find_typedef b/src/tools/find_typedef index 26715777a3d..ad14aeea488 100755 --- a/src/tools/find_typedef +++ b/src/tools/find_typedef @@ -1,6 +1,6 @@ #!/bin/sh -# $PostgreSQL: pgsql/src/tools/find_typedef,v 1.9 2008/03/18 22:45:11 momjian Exp $ +# $PostgreSQL: pgsql/src/tools/find_typedef,v 1.10 2008/03/18 23:04:34 momjian Exp $ # This script attempts to find all typedef's in the postgres binaries # by using 'nm' to report all typedef debugging symbols. @@ -36,7 +36,7 @@ then echo "Usage: $0 postgres_binary_directory [...]" 1>&2 fi for DIR -do +do # if objdump -W is recognized, only one line of error should appear if [ `objdump -W 2>&1 | wc -l` -eq 1 ] then # Linux # unfortunately the Linux version doesn't show unreferenced typedefs |