summaryrefslogtreecommitdiff
path: root/sysdeps/i386/i686/hp-timing.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-04-19 19:19:11 +0000
committerUlrich Drepper <drepper@redhat.com>2003-04-19 19:19:11 +0000
commit0b3df49e8d309149a9fbcd5837e650d3ef054017 (patch)
tree09d0c2293a9a89f7ecfd207733ca7602ae776750 /sysdeps/i386/i686/hp-timing.h
parent84a420c006bd61cda663c1694da0c734598724d1 (diff)
Update.
2003-04-19 Ulrich Drepper <drepper@redhat.com> * sysdeps/i386/i686/hp-timing.h (HP_TIMING_PRINT): Change type of __len to size_t to avoid warnings.
Diffstat (limited to 'sysdeps/i386/i686/hp-timing.h')
-rw-r--r--sysdeps/i386/i686/hp-timing.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/i386/i686/hp-timing.h b/sysdeps/i386/i686/hp-timing.h
index afb5c7123b..41000edb08 100644
--- a/sysdeps/i386/i686/hp-timing.h
+++ b/sysdeps/i386/i686/hp-timing.h
@@ -1,5 +1,5 @@
/* High precision, low overhead timing functions. i686 version.
- Copyright (C) 1998, 2002 Free Software Foundation, Inc.
+ Copyright (C) 1998, 2002, 2003 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
@@ -149,7 +149,7 @@ typedef unsigned long long int hp_timing_t;
do { \
char __buf[20]; \
char *__cp = _itoa (Val, __buf + sizeof (__buf), 10, 0); \
- int __len = (Len); \
+ size_t __len = (Len); \
char *__dest = (Buf); \
while (__len-- > 0 && __cp < __buf + sizeof (__buf)) \
*__dest++ = *__cp++; \