diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-22 02:22:28 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-22 02:22:28 +0000 |
commit | e7d80fac04a9fc6aa0f0bc3a09f85de131f603fe (patch) | |
tree | 3da26386163b68a1f3fb1f5f75b8fcfe2369494d /libpthread/linuxthreads/sysdeps/unix | |
parent | cd87a6218bca11cc57912187136479f986039224 (diff) |
convert two more static ints used as flags to smallints
Diffstat (limited to 'libpthread/linuxthreads/sysdeps/unix')
-rw-r--r-- | libpthread/linuxthreads/sysdeps/unix/sysv/linux/mq_notify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/mq_notify.c b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/mq_notify.c index eace94c86..6cd0f09c1 100644 --- a/libpthread/linuxthreads/sysdeps/unix/sysv/linux/mq_notify.c +++ b/libpthread/linuxthreads/sysdeps/unix/sysv/linux/mq_notify.c @@ -196,7 +196,7 @@ init_mq_netlink (void) if (err == 0) { - static int added_atfork; + static smallint added_atfork; if (added_atfork == 0 && pthread_atfork (NULL, NULL, reset_once) != 0) |