aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--dejagnu.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7e61329..210c0f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2008-04-06 Daniel Jacobowitz <dan@codesourcery.com>
+ * dejagnu.h (totals): Correct typos.
+
+2008-04-06 Daniel Jacobowitz <dan@codesourcery.com>
+
* doc/user.xml (Adding a New Tool, Adding a New Target): Fix typos.
* doc/dejagnu.texi: Regenerate.
diff --git a/dejagnu.h b/dejagnu.h
index 24421e8..afdf61d 100644
--- a/dejagnu.h
+++ b/dejagnu.h
@@ -156,12 +156,12 @@ totals (void)
printf ("\nTotals:\n");
printf ("\t#passed:\t\t%d\n", passed);
printf ("\t#real failed:\t\t%d\n", failed);
- if (xfail)
+ if (xfailed)
printf ("\t#expected failures:\t\t%d\n", xfailed);
if (untest)
printf ("\t#untested:\t\t%d\n", untest);
if (unresolve)
- printf ("\t#unresolved:\t\t%d\n", unresolved);
+ printf ("\t#unresolved:\t\t%d\n", unresolve);
}
#ifdef __cplusplus