summaryrefslogtreecommitdiffstats
path: root/libtdenetwork
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:36 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 23:52:43 +0900
commit82d3e5d6303d901f09752be3cd3c0998cfb46f64 (patch)
tree51a23fb0ea9adfa3c2391473cef6ee425baa4b37 /libtdenetwork
parent92e4936facb693a879f06137b5d86d633b0a5427 (diff)
downloadtdepim-82d3e5d6303d901f09752be3cd3c0998cfb46f64.tar.gz
tdepim-82d3e5d6303d901f09752be3cd3c0998cfb46f64.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 90c6a46c9c8d9d18e74302fa43b80ef77ce48f93)
Diffstat (limited to 'libtdenetwork')
-rw-r--r--libtdenetwork/libgpgme-copy/gpgme/stpcpy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtdenetwork/libgpgme-copy/gpgme/stpcpy.c b/libtdenetwork/libgpgme-copy/gpgme/stpcpy.c
index 4e9fc10a..7e6fa69e 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;