about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/futimes.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-07-14 21:16:43 +0000
committerUlrich Drepper <drepper@redhat.com>2003-07-14 21:16:43 +0000
commitb1b060c341b112e5face9a074e95fd366e8539bf (patch)
tree99e29cac2b00f4957a60f888c4c5605c59beb516 /sysdeps/unix/sysv/linux/futimes.c
parent9291eb491f78ddea7d908a58a2b2ce68c63f31ba (diff)
downloadglibc-b1b060c341b112e5face9a074e95fd366e8539bf.tar.gz
glibc-b1b060c341b112e5face9a074e95fd366e8539bf.tar.xz
glibc-b1b060c341b112e5face9a074e95fd366e8539bf.zip
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.c2
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