diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-07-03 17:33:22 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-07-03 17:33:22 +0000 |
commit | 414f49c0349d3de3478672a9c56b349d65cdf8f1 (patch) | |
tree | 1559a02c7ec4dd388c3ad05eb3fb39a2503869e1 | |
parent | 1418bf990e16ae15a4f3b7a8b38ac57a79e7f4dd (diff) | |
download | glibc-414f49c0349d3de3478672a9c56b349d65cdf8f1.tar glibc-414f49c0349d3de3478672a9c56b349d65cdf8f1.tar.gz glibc-414f49c0349d3de3478672a9c56b349d65cdf8f1.tar.bz2 glibc-414f49c0349d3de3478672a9c56b349d65cdf8f1.zip |
Update.
2003-07-03 Jakub Jelinek <jakub@redhat.com>
* sysdeps/unix/sysv/linux/prof-freq.c (__profile_frequency): Fix a
typo.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/prof-freq.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2003-07-03 Jakub Jelinek <jakub@redhat.com> + + * sysdeps/unix/sysv/linux/prof-freq.c (__profile_frequency): Fix a + typo. + 2003-07-03 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_CLKTCK): diff --git a/sysdeps/unix/sysv/linux/prof-freq.c b/sysdeps/unix/sysv/linux/prof-freq.c index 00e963556c..a67c179700 100644 --- a/sysdeps/unix/sysv/linux/prof-freq.c +++ b/sysdeps/unix/sysv/linux/prof-freq.c @@ -29,7 +29,7 @@ __profile_frequency (void) #ifdef __ASSUME_AT_CLKTCK return GL(dl_clktck); #else - if (GL(dl_clktck) != ) + if (GL(dl_clktck) != 0) return GL(dl_clktck); struct itimerval tim; |