about summary refs log tree commit diff
path: root/localedata/xfrm-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'localedata/xfrm-test.c')
-rw-r--r--localedata/xfrm-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/localedata/xfrm-test.c b/localedata/xfrm-test.c
index 7a9cbf8825..bc12fcdd3d 100644
--- a/localedata/xfrm-test.c
+++ b/localedata/xfrm-test.c
@@ -127,8 +127,8 @@ xstrcmp (ptr1, ptr2)
      const void *ptr1;
      const void *ptr2;
 {
-  struct lines *l1 = (struct lines *) ptr1;
-  struct lines *l2 = (struct lines *) ptr2;
+  const struct lines *l1 = (const struct lines *) ptr1;
+  const struct lines *l2 = (const struct lines *) ptr2;
 
   return strcmp (l1->xfrm, l2->xfrm);
 }