Index: ossp-pkg/ex/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/ex/ChangeLog,v rcsdiff -q -kk '-r1.13' '-r1.14' -u '/v/ossp/cvs/ossp-pkg/ex/ChangeLog,v' 2>/dev/null --- ChangeLog 2005/01/30 13:40:05 1.13 +++ ChangeLog 2005/01/30 13:41:11 1.14 @@ -22,7 +22,7 @@ Changes between 1.0.3 and 1.0.4 (03-Apr-2004 to 05-Apr-2004) - *) Added Autoconf check for va_copy() and use this in + *) Added Autoconf check for va_copy() and use this in the test suite sub-library in order to fix it. [Ralf S. Engelschall] Index: ossp-pkg/ex/aclocal.m4 RCS File: /v/ossp/cvs/ossp-pkg/ex/aclocal.m4,v rcsdiff -q -kk '-r1.7' '-r1.8' -u '/v/ossp/cvs/ossp-pkg/ex/aclocal.m4,v' 2>/dev/null --- aclocal.m4 2005/01/30 13:39:07 1.7 +++ aclocal.m4 2005/01/30 13:41:11 1.8 @@ -179,7 +179,7 @@ AC_DEFUN(AC_CHECK_VA_COPY,[ dnl # provide Autoconf display check message AC_MSG_CHECKING(for va_copy() function) - dnl # check for various implementations in priorized sequence + dnl # check for various implementations in priorized sequence AC_CACHE_VAL(ac_cv_va_copy, [ ac_cv_va_copy="" dnl # 1. check for standardized C99 macro Index: ossp-pkg/ex/ts.c RCS File: /v/ossp/cvs/ossp-pkg/ex/ts.c,v rcsdiff -q -kk '-r1.8' '-r1.9' -u '/v/ossp/cvs/ossp-pkg/ex/ts.c,v' 2>/dev/null --- ts.c 2005/01/30 13:39:07 1.8 +++ ts.c 2005/01/30 13:41:11 1.9 @@ -123,7 +123,7 @@ static int ts_suite_mvxprintf(char *buffer, size_t bufsize, const char *format, va_list ap) { /* sufficient integer buffer: x log_10(2) + safety */ - char ibuf[((sizeof(int)*8)/3)+10]; + char ibuf[((sizeof(int)*8)/3)+10]; char *cp; char c; int d; @@ -355,9 +355,9 @@ /* print test suite summary */ fprintf(stdout, " __________________________________________________________________\n"); fprintf(stdout, "\n"); - fprintf(stdout, " Test Summary: %d tests (%d ok, %d failed), %d checks (%d ok, %d failed)\n", - total_tests, (total_tests - total_tests_suite_failed), total_tests_suite_failed, - total_checks, (total_checks - total_checks_failed), total_checks_failed); + fprintf(stdout, " Test Summary: %d tests (%d ok, %d failed), %d checks (%d ok, %d failed)\n", + total_tests, (total_tests - total_tests_suite_failed), total_tests_suite_failed, + total_checks, (total_checks - total_checks_failed), total_checks_failed); if (total_tests_suite_failed > 0) fprintf(stdout, " Test Suite: FAILED\n"); else