summaryrefslogtreecommitdiffstats
path: root/libtdenetwork/libgpgme-copy/gpgme/stpcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtdenetwork/libgpgme-copy/gpgme/stpcpy.c')
-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;