From 320e1832994bd5694478e56dbe98a47fe595e0c0 Mon Sep 17 00:00:00 2001 From: op Date: Mon, 15 May 2023 12:02:40 +0000 Subject: [PATCH] cast to '(long long)' instead of '(long long int)' requested by deraadt@, ok tb@ --- libexec/mail.local/mail.local.c | 4 ++-- 1 file 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 @@ -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; -- 2.20.1