about summary refs log tree commit diff
path: root/stdio-common
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-01-21 14:58:07 +0000
committerAndreas Jaeger <aj@suse.de>2001-01-21 14:58:07 +0000
commitd25adda7cc69becc4963021e9aecb159e76f1727 (patch)
tree1cc9119cd282a852091cd7a537bf261c482d7eaf /stdio-common
parent3b7caeac2c8d9dc0ceb84137e1e012845d58c90d (diff)
downloadglibc-d25adda7cc69becc4963021e9aecb159e76f1727.tar.gz
glibc-d25adda7cc69becc4963021e9aecb159e76f1727.tar.xz
glibc-d25adda7cc69becc4963021e9aecb159e76f1727.zip
(vfprintf): Add casts.
Diffstat (limited to 'stdio-common')
-rw-r--r--stdio-common/vfprintf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c
index 62750b4389..92ec7db96f 100644
--- a/stdio-common/vfprintf.c
+++ b/stdio-common/vfprintf.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-1999, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1991-1999, 2000, 2001 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -1431,7 +1431,7 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap)
 	    left = 1;
 	  }
 
-	if (width + 32 >= sizeof (work_buffer) / sizeof (work_buffer[0]))
+	if (width + 32 >= (int) (sizeof (work_buffer) / sizeof (work_buffer[0])))
 	  /* We have to use a special buffer.  The "32" is just a safe
 	     bet for all the output which is not counted in the width.  */
 	  workend = ((CHAR_T *) alloca ((width + 32) * sizeof (CHAR_T))
@@ -1443,7 +1443,7 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap)
     LABEL (width):
       width = read_int (&f);
 
-      if (width + 32 >= sizeof (work_buffer) / sizeof (work_buffer[0]))
+      if (width + 32 >= (int) (sizeof (work_buffer) / sizeof (work_buffer[0])))
 	/* We have to use a special buffer.  The "32" is just a safe
 	   bet for all the output which is not counted in the width.  */
 	workend = ((CHAR_T *) alloca ((width + 32) * sizeof (CHAR_T))
@@ -1475,7 +1475,7 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap)
       else
 	prec = 0;
       if (prec > width
-	  && prec + 32 > sizeof (work_buffer) / sizeof (work_buffer[0]))
+	  && prec + 32 > (int)(sizeof (work_buffer) / sizeof (work_buffer[0])))
 	workend = alloca (spec + 32) + (spec + 32);
       JUMP (*f, step2_jumps);
 
@@ -1772,7 +1772,7 @@ do_positional:
 	  }
 
 	/* Maybe the buffer is too small.  */
-	if (MAX (prec, width) + 32 > sizeof (work_buffer) / sizeof (CHAR_T))
+	if (MAX (prec, width) + 32 > (int) (sizeof (work_buffer) / sizeof (CHAR_T)))
 	  workend = ((CHAR_T *) alloca ((MAX (prec, width) + 32)
 					* sizeof (CHAR_T))
 		     + (MAX (prec, width) + 32));