diff options
Diffstat (limited to 'debug/strncpy_chk.c')
-rw-r--r-- | debug/strncpy_chk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/strncpy_chk.c b/debug/strncpy_chk.c index 674d16033b..e34c1e5d67 100644 --- a/debug/strncpy_chk.c +++ b/debug/strncpy_chk.c @@ -26,7 +26,7 @@ __strncpy_chk (s1, s2, n, s1len) size_t n; size_t s1len; { - reg_char c; + char c; char *s = s1; if (__builtin_expect (s1len < n, 0)) |