summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-02-01 19:44:09 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-02-01 19:44:09 +0000
commit23e7d3080391400fb53054e61e0ca6578242702d (patch)
tree08bfc67449e9db46d8de3e335c7e79576a902f82 /c
parent2006-01-09 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-23e7d3080391400fb53054e61e0ca6578242702d.tar.bz2
2006-02-01 Joel Sherrill <joel@OARcorp.com>
PR 855/tests * include/tmacros.h: Fix typo.
Diffstat (limited to 'c')
-rw-r--r--c/src/tests/support/ChangeLog5
-rw-r--r--c/src/tests/support/include/tmacros.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/c/src/tests/support/ChangeLog b/c/src/tests/support/ChangeLog
index f781cdb104..91a1e4ef76 100644
--- a/c/src/tests/support/ChangeLog
+++ b/c/src/tests/support/ChangeLog
@@ -1,3 +1,8 @@
+2006-02-01 Joel Sherrill <joel@OARcorp.com>
+
+ PR 855/tests
+ * include/tmacros.h: Fix typo.
+
2004-02-03 Joel Sherrill <joel@OARcorp.com>
* include/buffer_test_io.h: Do not use iprintf() if in ANSI compiler
diff --git a/c/src/tests/support/include/tmacros.h b/c/src/tests/support/include/tmacros.h
index f5298710ad..bda8869473 100644
--- a/c/src/tests/support/include/tmacros.h
+++ b/c/src/tests/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 )