diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-07-14 21:16:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-07-14 21:16:43 +0000 |
commit | b1b060c341b112e5face9a074e95fd366e8539bf (patch) | |
tree | 99e29cac2b00f4957a60f888c4c5605c59beb516 /sysdeps/unix/sysv/linux/futimes.c | |
parent | 9291eb491f78ddea7d908a58a2b2ce68c63f31ba (diff) | |
download | glibc-b1b060c341b112e5face9a074e95fd366e8539bf.tar.gz |
Update.
2003-07-14 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/kernel-features.h: Define
__ASSUME_TGKILL for Alpha appropriately.
Diffstat (limited to 'sysdeps/unix/sysv/linux/futimes.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/futimes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/futimes.c b/sysdeps/unix/sysv/linux/futimes.c index bb1f045df5..97a917318e 100644 --- a/sysdeps/unix/sysv/linux/futimes.c +++ b/sysdeps/unix/sysv/linux/futimes.c @@ -36,7 +36,7 @@ __futimes (int fd, const struct timeval tvp[2]) static const char selffd[] = "/proc/self/fd/"; char fname[sizeof (selffd) + 3 * sizeof (int)]; fname[sizeof (fname) - 1] = '\0'; - char *cp = _itoa_word (fd, fname + sizeof (fname) - 1, 10, 0); + char *cp = _itoa_word ((unsigned int) fd, fname + sizeof (fname) - 1, 10, 0); cp = memcpy (cp - sizeof (selffd) + 1, selffd, sizeof (selffd) - 1); #ifdef __NR_utimes |