From c642ac7bae91336a91144433bcb1bfeb5c5048b6 Mon Sep 17 00:00:00 2001 From: dholland Date: Thu, 27 Aug 2009 00:40:44 +0000 Subject: remove unnecessary casts --- fortune/fortune/fortune.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/fortune/fortune/fortune.c b/fortune/fortune/fortune.c index c417b258..b1790e20 100644 --- a/fortune/fortune/fortune.c +++ b/fortune/fortune/fortune.c @@ -1,4 +1,4 @@ -/* $NetBSD: fortune.c,v 1.52 2009/08/12 06:06:28 dholland Exp $ */ +/* $NetBSD: fortune.c,v 1.53 2009/08/27 00:40:44 dholland Exp $ */ /*- * Copyright (c) 1986, 1993 @@ -42,7 +42,7 @@ __COPYRIGHT("@(#) Copyright (c) 1986, 1993\ #if 0 static char sccsid[] = "@(#)fortune.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: fortune.c,v 1.52 2009/08/12 06:06:28 dholland Exp $"); +__RCSID("$NetBSD: fortune.c,v 1.53 2009/08/27 00:40:44 dholland Exp $"); #endif #endif /* not lint */ @@ -514,7 +514,7 @@ add_file(percent, file, dir, head, tail, parent) tpath = NULL; } else { - tpath = do_malloc((unsigned int) (strlen(dir) + strlen(file) + 2)); + tpath = do_malloc(strlen(dir) + strlen(file) + 2); (void) strcat(strcat(strcpy(tpath, dir), "/"), file); path = tpath; } @@ -644,7 +644,7 @@ new_fp() { FILEDESC *fp; - fp = (FILEDESC *) do_malloc(sizeof *fp); + fp = do_malloc(sizeof *fp); fp->datfd = -1; fp->pos = POS_UNKNOWN; fp->inf = NULL; @@ -1319,7 +1319,7 @@ find_matches() Fort_len = maxlen_in_list(File_list); DPRINTF(2, (stderr, "Maximum length is %d\n", Fort_len)); /* extra length, "%\n" is appended */ - Fortbuf = do_malloc((unsigned int) Fort_len + 10); + Fortbuf = do_malloc(Fort_len + 10); Found_one = FALSE; matches_in_list(File_list); -- cgit v1.2.3-56-ge451