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 /stdio-common/test_rdwr.c | |
parent | 8e254d8e0d0820716e0ccf5f2b89c4fd1325f051 (diff) | |
download | glibc-2e09a79ada1f6d92809a037d41895e3d9302ad59.tar.gz |
Avoid use of "register" as optimization hint.
Diffstat (limited to 'stdio-common/test_rdwr.c')
-rw-r--r-- | stdio-common/test_rdwr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/test_rdwr.c b/stdio-common/test_rdwr.c index 93b0fa438c..2be8365a39 100644 --- a/stdio-common/test_rdwr.c +++ b/stdio-common/test_rdwr.c @@ -78,7 +78,7 @@ main (int argc, char **argv) long int where = ftell (f); if (where == (long int) replace_from) { - register size_t i; + size_t i; for (i = replace_from; i < replace_to; ++i) if (putc(replace[i], f) == EOF) { |