diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2012-12-08 13:03:24 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2012-12-08 13:03:24 +0530 |
commit | 56e7d3ad5c2f369349bf7def0d8875a50e2d275b (patch) | |
tree | 0e34ff4e97b380d098c0cf65b083b1147c1f9a00 /nptl/sysdeps/unix/sysv | |
parent | 76f2d2ea7b1ecaeab5f91fe7c560c7c3f8ad5c8d (diff) | |
download | glibc-56e7d3ad5c2f369349bf7def0d8875a50e2d275b.tar.gz |
Fix some build warnings on s390x
Diffstat (limited to 'nptl/sysdeps/unix/sysv')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c b/nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c index 3f8853917a..bb2dfc065a 100644 --- a/nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c +++ b/nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c @@ -1,5 +1,5 @@ /* Clean up stack frames unwound by longjmp. Linux/s390 version. - Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc. + Copyright (C) 2003-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -27,7 +27,7 @@ extern void __pthread_cleanup_upto (__jmp_buf env, char *targetframe); void _longjmp_unwind (jmp_buf env, int val) { - unsigned char local_var; + char local_var; #ifdef SHARED if (__libc_pthread_functions_init) |