summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2003-06-25 11:14:37 +0000
committerAndreas Jaeger <aj@suse.de>2003-06-25 11:14:37 +0000
commit346f3a9016179e2ee492bb7d58ce790a6ce18c84 (patch)
tree56c8af1c4c3f99633be85a00b90dda9bd8f9df63
parentfa4a36fdffe7a96c60dd5baf383e6c731a11a8c5 (diff)
* posix/tst-nanosleep.c: Include <time.h> for nanosleep
declaration. * stdio-common/tst-fphex.c: Fix format string. * posix/tst-nanosleep.c: Include <time.h> for nanosleep declaration. * stdio-common/tst-fphex.c: Fix format string.
-rw-r--r--ChangeLog5
-rw-r--r--posix/tst-nanosleep.c1
-rw-r--r--stdio-common/tst-fphex.c2
3 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index feb19a7e48..d0accd10cc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2003-06-25 Andreas Jaeger <aj@suse.de>
+ * posix/tst-nanosleep.c: Include <time.h> for nanosleep
+ declaration.
+
+ * stdio-common/tst-fphex.c: Fix format string.
+
* posix/transbug.c: Include <string.h> for memset and strlen
declarations.
diff --git a/posix/tst-nanosleep.c b/posix/tst-nanosleep.c
index a087db86ff..0fa0135bc6 100644
--- a/posix/tst-nanosleep.c
+++ b/posix/tst-nanosleep.c
@@ -20,6 +20,7 @@
#include <stdio.h>
#include <unistd.h>
#include <sys/time.h>
+#include <time.h>
/* Test that nanosleep() does sleep. */
diff --git a/stdio-common/tst-fphex.c b/stdio-common/tst-fphex.c
index aca2c0500d..212e4ed9ec 100644
--- a/stdio-common/tst-fphex.c
+++ b/stdio-common/tst-fphex.c
@@ -39,7 +39,7 @@ do_test (int argc, char **argv)
int n = snprintf (buf, sizeof buf, t->fmt, t->value);
if (n != strlen (t->expect) || strcmp (buf, t->expect) != 0)
{
- printf ("%s\tExpected \"%s\" (%u)\n\tGot \"%s\" (%d, %u)\n",
+ printf ("%s\tExpected \"%s\" (%Zu)\n\tGot \"%s\" (%d, %Zu)\n",
t->fmt, t->expect, strlen (t->expect), buf, n, strlen (buf));
result = 1;
}