2002-09-23  Michal Ludvig  <mludvig@suse.cz>
	* configure.in: Fix regular expressions.
	* linux/syscall.h: Added missing braces in prototype of
	sys_getdents64().
	* file.c: Use '#ifdef LINUX' instead of '#ifdef linux'.
	(struct fileflags): Made extern to inhibit compiation warnings.
	(sys_getdents64): Merged LINUX and SVR4 part.
	* syscall.c(get_scno): Split multiline string into two distinct
	strings.
diff --git a/syscall.c b/syscall.c
index dfad8f0..3059f1c 100644
--- a/syscall.c
+++ b/syscall.c
@@ -890,8 +890,8 @@
            long correct_scno = (scno & 0xff);
            if (debug)
                fprintf(stderr,
-                   "Detected glibc bug: bogus system call number = %ld,
-correcting to %ld\n",
+                   "Detected glibc bug: bogus system call number = %ld, "
+		   "correcting to %ld\n",
                    scno,
                    correct_scno);
            scno = correct_scno;