diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-17 00:06:01 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-17 00:06:01 +0000 |
commit | f83c7164365526788d69128a506d81777e4092b3 (patch) | |
tree | ec35618114bf47edeedd194fdf1eb3b0b08a9c0d /sysdeps/unix/sysv/aix/setitimer.c | |
parent | 87d60668d692bcb646ffdd20eebcd02632a7e530 (diff) | |
download | glibc-f83c7164365526788d69128a506d81777e4092b3.tar glibc-f83c7164365526788d69128a506d81777e4092b3.tar.gz glibc-f83c7164365526788d69128a506d81777e4092b3.tar.bz2 glibc-f83c7164365526788d69128a506d81777e4092b3.zip |
Update.
2002-12-16 Art Haas <ahaas@airmail.net>
* io/ftw.c: Convert GCC extension initializer syntax to C99.
Diffstat (limited to 'sysdeps/unix/sysv/aix/setitimer.c')
-rw-r--r-- | sysdeps/unix/sysv/aix/setitimer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/aix/setitimer.c b/sysdeps/unix/sysv/aix/setitimer.c index e40a075fa9..d7e741abe7 100644 --- a/sysdeps/unix/sysv/aix/setitimer.c +++ b/sysdeps/unix/sysv/aix/setitimer.c @@ -56,7 +56,7 @@ __setitimer (which, new, old) case -1: exit(-1); case 0: { - struct timespec ts ={tv_sec:(long int)new->it_value.tv_sec,tv_nsec:0}; + struct timespec ts ={.tv_sec = (long int)new->it_value.tv_sec, .tv_nsec = 0}; __libc_nanosleep(&ts,&ts); __kill(getppid(), SIGALRM); exit(0); |