summaryrefslogtreecommitdiff
path: root/posix/bug-regex22.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-12-22 20:10:10 +0000
committerUlrich Drepper <drepper@redhat.com>2004-12-22 20:10:10 +0000
commita334319f6530564d22e775935d9c91663623a1b4 (patch)
treeb5877475619e4c938e98757d518bb1e9cbead751 /posix/bug-regex22.c
parent0ecb606cb6cf65de1d9fc8a919bceb4be476c602 (diff)
(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
Diffstat (limited to 'posix/bug-regex22.c')
-rw-r--r--posix/bug-regex22.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/posix/bug-regex22.c b/posix/bug-regex22.c
index c5bc94869b..1636202d36 100644
--- a/posix/bug-regex22.c
+++ b/posix/bug-regex22.c
@@ -1,5 +1,5 @@
/* Test re.translate != NULL.
- Copyright (C) 2004, 2005 Free Software Foundation, Inc.
+ Copyright (C) 2004 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Jakub Jelinek <jakub@redhat.com>, 2004.
@@ -40,7 +40,7 @@ main (void)
re_set_syntax (RE_SYNTAX_POSIX_EGREP);
memset (&re, 0, sizeof (re));
- re.translate = (unsigned char *) trans;
+ re.translate = trans;
s = re_compile_pattern ("\\W", 2, &re);
if (s != NULL)
@@ -68,7 +68,7 @@ main (void)
}
memset (&re, 0, sizeof (re));
- re.translate = (unsigned char *) trans;
+ re.translate = trans;
s = re_compile_pattern ("\\w", 2, &re);
if (s != NULL)
@@ -96,7 +96,7 @@ main (void)
}
memset (&re, 0, sizeof (re));
- re.translate = (unsigned char *) trans;
+ re.translate = trans;
s = re_compile_pattern ("[[:DIGIT:]]", 11, &re);
if (s == NULL)
{
@@ -106,7 +106,7 @@ main (void)
}
memset (&re, 0, sizeof (re));
- re.translate = (unsigned char *) trans;
+ re.translate = trans;
s = re_compile_pattern ("[[:DIGIT:]]", 2, &re);
if (s == NULL)
{