diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-06-07 22:24:35 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-06-07 22:24:35 +0000 |
commit | 2e09a79ada1f6d92809a037d41895e3d9302ad59 (patch) | |
tree | 999c9d18279a7de289937116273ae4016356aa3a /mach/msgserver.c | |
parent | Remove trailing whitespace from localedata. (diff) | |
download | glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar.gz glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar.bz2 glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.zip |
Avoid use of "register" as optimization hint.
Diffstat (limited to 'mach/msgserver.c')
-rw-r--r-- | mach/msgserver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mach/msgserver.c b/mach/msgserver.c index fc34d71968..a77377b6d9 100644 --- a/mach/msgserver.c +++ b/mach/msgserver.c @@ -78,8 +78,8 @@ __mach_msg_server_timeout (boolean_t (*demux) (mach_msg_header_t *request, mach_msg_option_t option, mach_msg_timeout_t timeout) { - register mig_reply_header_t *request, *reply; - register mach_msg_return_t mr; + mig_reply_header_t *request, *reply; + mach_msg_return_t mr; if (max_size == 0) { |