This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

dl-misc compile fix



2001-02-28  Jes Sorensen  <jes@linuxcare.com>

	* elf/dl-misc.c (_dl_debug_vdprintf): Remove superflous semi-colon.

--- elf/dl-misc.c~	Wed Feb 28 10:00:35 2001
+++ elf/dl-misc.c	Wed Feb 28 10:13:18 2001
@@ -181,7 +181,7 @@
 		   different size.  */
 #if LONG_MAX != INT_MAX
 		unsigned long int num = (long_mod
-					 ? va_arg (arg, unsigned long int);
+					 ? va_arg (arg, unsigned long int)
 					 : va_arg (arg, unsigned int));
 #else
 		unsigned long int num = va_arg (arg, unsigned int);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]