changeset 11246:a1564bea27c4

Avoid a gcc warning.
author Bruno Haible <bruno@clisp.org>
date Sun, 01 Mar 2009 17:54:52 +0100
parents ba40867f64e9
children baa92ee42663
files ChangeLog tests/test-sched.c
diffstat 2 files changed, 9 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Mar 01 17:39:38 2009 +0100
+++ b/ChangeLog	Sun Mar 01 17:54:52 2009 +0100
@@ -1,3 +1,9 @@
+2009-03-01  Bruno Haible  <bruno@clisp.org>
+
+	Avoid a gcc warning.
+	* tests/test-sched.c (b): Make global.
+	Reported by Eric Blake.
+
 2009-01-19  Martin Lambers  <marlam@marlam.de>
 
 	Provide POSIX semantics for socket timeout options on W32.
--- a/tests/test-sched.c	Sun Mar 01 17:39:38 2009 +0100
+++ b/tests/test-sched.c	Sun Mar 01 17:54:52 2009 +0100
@@ -1,5 +1,5 @@
 /* Test of <sched.h> substitute.
-   Copyright (C) 2008 Free Software Foundation, Inc.
+   Copyright (C) 2008-2009 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -23,8 +23,8 @@
 /* Check that 'struct sched_param' is defined.  */
 static struct sched_param a;
 
-/* Check that the SCHED_* macris are defined and compile-time constants.  */
-static int b[] = { SCHED_FIFO, SCHED_RR, SCHED_OTHER };
+/* Check that the SCHED_* macros are defined and compile-time constants.  */
+int b[] = { SCHED_FIFO, SCHED_RR, SCHED_OTHER };
 
 static int f1;