diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-08-14 19:49:19 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-08-14 19:49:19 +0000 |
commit | b89c8a0d48c60ed6bf4440b7b3e217d8df068f42 (patch) | |
tree | 17776d313a091a59d8adec3839de5db82044a3be /usr.bin/cvs/logmsg.c | |
parent | 89e22d556d6a3517beebb02c12e4a465dbb4aadf (diff) |
missing casts; ok joris
Diffstat (limited to 'usr.bin/cvs/logmsg.c')
-rw-r--r-- | usr.bin/cvs/logmsg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/logmsg.c b/usr.bin/cvs/logmsg.c index c7b5f4e6c93..7a919b91787 100644 --- a/usr.bin/cvs/logmsg.c +++ b/usr.bin/cvs/logmsg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: logmsg.c,v 1.20 2005/08/10 14:49:20 xsa Exp $ */ +/* $OpenBSD: logmsg.c,v 1.21 2005/08/14 19:49:18 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -110,7 +110,7 @@ cvs_logmsg_open(const char *path) return (NULL); } - bp = cvs_buf_alloc(128, BUF_AUTOEXT); + bp = cvs_buf_alloc((size_t)128, BUF_AUTOEXT); if (bp == NULL) { (void)fclose(fp); return (NULL); |