summaryrefslogtreecommitdiff
path: root/ACE
diff options
context:
space:
mode:
Diffstat (limited to 'ACE')
-rw-r--r--ACE/ChangeLog7
-rwxr-xr-xACE/bin/doxygen-convert-h.pl2
2 files changed, 8 insertions, 1 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 4f0c8afe47c..8c7e9410948 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,10 @@
+Thu Apr 12 19:05:56 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/doxygen-convert-h.pl:
+
+ Fixed a typo in a variable name. Using strict would have caught
+ this.
+
Thu Apr 12 12:18:20 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* bin/auto_run_tests.pl:
diff --git a/ACE/bin/doxygen-convert-h.pl b/ACE/bin/doxygen-convert-h.pl
index 48974bd2709..279359eb41b 100755
--- a/ACE/bin/doxygen-convert-h.pl
+++ b/ACE/bin/doxygen-convert-h.pl
@@ -71,7 +71,7 @@ foreach $arg (@ARGV) {
push(@files, recursive_find($result));
}
else {
- push(@files, $results);
+ push(@files, $result);
}
}
}