diff options
author | Omar Polo <op@cvs.openbsd.org> | 2023-05-15 12:02:41 +0000 |
---|---|---|
committer | Omar Polo <op@cvs.openbsd.org> | 2023-05-15 12:02:41 +0000 |
commit | a88b392f9d0798e1ea5378f0d45accb615cf17c0 (patch) | |
tree | b64ef9d46ddd79ab71cadff103f380f03732b160 /libexec/mail.local | |
parent | e0174394e90620fce038f5e8391c24f4b84d4a42 (diff) |
cast to '(long long)' instead of '(long long int)'
requested by deraadt@, ok tb@
Diffstat (limited to 'libexec/mail.local')
-rw-r--r-- | libexec/mail.local/mail.local.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/mail.local/mail.local.c b/libexec/mail.local/mail.local.c index 8a27d03c83f..815fe58323c 100644 --- a/libexec/mail.local/mail.local.c +++ b/libexec/mail.local/mail.local.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mail.local.c,v 1.40 2023/05/10 08:03:49 op Exp $ */ +/* $OpenBSD: mail.local.c,v 1.41 2023/05/15 12:02:40 op Exp $ */ /*- * Copyright (c) 1996-1998 Theo de Raadt <deraadt@theos.com> @@ -244,7 +244,7 @@ retry: curoff = lseek(mbfd, 0, SEEK_END); (void)snprintf(biffmsg, sizeof biffmsg, "%s@%lld\n", name, - (long long int)curoff); + (long long)curoff); if (lseek(fd, 0, SEEK_SET) == (off_t)-1) { mwarn("temporary file: %s", strerror(errno)); goto bad; |