diff options
Diffstat (limited to 'libtdenetwork/libgpgme-copy/gpgme')
-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; |