summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testsuites/ChangeLog5
-rw-r--r--testsuites/support/include/tmacros.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/testsuites/ChangeLog b/testsuites/ChangeLog
index 62d6a8af95..0582caf82c 100644
--- a/testsuites/ChangeLog
+++ b/testsuites/ChangeLog
@@ -1,3 +1,8 @@
+2006-02-01 Joel Sherrill <joel@OARcorp.com>
+
+ PR 855/tests
+ * support/include/tmacros.h: Fix typo.
+
2005-11-22 Ralf Corsepius <ralf.corsepius@rtems.org>
* aclocal/enable-bare.m4: Remove (Unused).
diff --git a/testsuites/support/include/tmacros.h b/testsuites/support/include/tmacros.h
index 956bee969c..be8ca9f17d 100644
--- a/testsuites/support/include/tmacros.h
+++ b/testsuites/support/include/tmacros.h
@@ -144,7 +144,7 @@ extern "C" {
#define sprint_time(_str, _s1, _tb, _s2) \
do { \
- sprintf( (str), "%s%02d:%02d:%02d %02d/%02d/%04d%s", \
+ sprintf( (_str), "%s%02d:%02d:%02d %02d/%02d/%04d%s", \
_s1, (_tb)->hour, (_tb)->minute, (_tb)->second, \
(_tb)->month, (_tb)->day, (_tb)->year, _s2 ); \
} while ( 0 )