Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/lib/libc/sys make constant fit in 32 bits.



details:   https://anonhg.NetBSD.org/src/rev/7a63aa5d061b
branches:  trunk
changeset: 760647:7a63aa5d061b
user:      christos <christos%NetBSD.org@localhost>
date:      Mon Jan 10 05:15:00 2011 +0000

description:
make constant fit in 32 bits.

diffstat:

 tests/lib/libc/sys/t_sigqueue.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r e79ae2dc6eb2 -r 7a63aa5d061b tests/lib/libc/sys/t_sigqueue.c
--- a/tests/lib/libc/sys/t_sigqueue.c   Mon Jan 10 05:00:35 2011 +0000
+++ b/tests/lib/libc/sys/t_sigqueue.c   Mon Jan 10 05:15:00 2011 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: t_sigqueue.c,v 1.1 2011/01/10 04:57:56 christos Exp $ */
+/* $NetBSD: t_sigqueue.c,v 1.2 2011/01/10 05:15:00 christos Exp $ */
 
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_sigqueue.c,v 1.1 2011/01/10 04:57:56 christos Exp $");
+__RCSID("$NetBSD: t_sigqueue.c,v 1.2 2011/01/10 05:15:00 christos Exp $");
 
 #include <signal.h>
 #include <unistd.h>
@@ -53,7 +53,7 @@
        atf_tc_set_md_var(tc, "descr", "Checks sigqueue sigval delivery");
 }
 
-#define VALUE (int)0xc001dadd1
+#define VALUE (int)0xc001dad1
 static int value;
 
 static void



Home | Main Index | Thread Index | Old Index