diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2017-01-31 11:24:35 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2017-01-31 11:24:35 +0100 |
commit | aa1bfde879f3c5885199d7bb4720efaabff67d8c (patch) | |
tree | 04f79b6377dd7cdb5340e3e82503a3cc670983bf /call/call.h | |
parent | 550fe816e546e78931792e94b558336516054415 (diff) |
call: Fix declaration of unix2yapp().
It didn't match the actual function definition.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'call/call.h')
-rw-r--r-- | call/call.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/call/call.h b/call/call.h index 2a91364..68bb5d6 100644 --- a/call/call.h +++ b/call/call.h @@ -18,4 +18,4 @@ extern void cmd_yapp(char *, int); /* In dostime.c */ extern void date_unix2dos(time_t, unsigned short*, unsigned short*); extern int yapp2unix(char *); -extern void unix2yapp( int, char *); +extern void unix2yapp(time_t unix_date, char *buffer); |