diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-01-30 20:17:36 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-01-30 20:17:36 +0900 |
commit | 90c6a46c9c8d9d18e74302fa43b80ef77ce48f93 (patch) | |
tree | 7ad483a05ee27cd86b26d2461951f20ef21d5f77 /libtdenetwork/libgpgme-copy | |
parent | dcbadd8017836649a71783b3a2d8162b8d227d4a (diff) | |
download | tdepim-90c6a46c9c8d9d18e74302fa43b80ef77ce48f93.tar.gz tdepim-90c6a46c9c8d9d18e74302fa43b80ef77ce48f93.zip |
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libtdenetwork/libgpgme-copy')
-rw-r--r-- | libtdenetwork/libgpgme-copy/gpgme/stpcpy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libtdenetwork/libgpgme-copy/gpgme/stpcpy.c b/libtdenetwork/libgpgme-copy/gpgme/stpcpy.c index 4e9fc10a0..7e6fa69e1 100644 --- a/libtdenetwork/libgpgme-copy/gpgme/stpcpy.c +++ b/libtdenetwork/libgpgme-copy/gpgme/stpcpy.c @@ -35,8 +35,8 @@ __stpcpy (dest, src) char *dest; const char *src; { - register char *d = dest; - register const char *s = src; + char *d = dest; + const char *s = src; do *d++ = *s; |