diff options
author | Michele Calgaro <[email protected]> | 2020-01-30 20:17:37 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-01-30 20:17:37 +0900 |
commit | d69788cef648d4307cbd9512ab8733eefbf0b7a7 (patch) | |
tree | 12128d037c3a4a5a761fc3cf54416ace8a60742c /ktalkd/mail.local/mail.local.c | |
parent | 150267bca5f6175e1d5f7f7b6983891a3aef96b4 (diff) | |
download | tdenetwork-d69788cef648d4307cbd9512ab8733eefbf0b7a7.tar.gz tdenetwork-d69788cef648d4307cbd9512ab8733eefbf0b7a7.zip |
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'ktalkd/mail.local/mail.local.c')
-rw-r--r-- | ktalkd/mail.local/mail.local.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ktalkd/mail.local/mail.local.c b/ktalkd/mail.local/mail.local.c index c88351dd..fbf91957 100644 --- a/ktalkd/mail.local/mail.local.c +++ b/ktalkd/mail.local/mail.local.c @@ -920,10 +920,10 @@ mktemp(path) static _gettemp(path, doopen) char *path; - register int *doopen; + int *doopen; { extern int errno; - register char *start, *trv; + char *start, *trv; struct stat sbuf; u_int pid; |