diff options
-rw-r--r-- | usr.bin/cvs/entries.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/entries.c b/usr.bin/cvs/entries.c index 8f35bfdb51f..9b4a863b6e9 100644 --- a/usr.bin/cvs/entries.c +++ b/usr.bin/cvs/entries.c @@ -1,4 +1,4 @@ -/* $OpenBSD: entries.c,v 1.59 2006/06/14 15:14:47 xsa Exp $ */ +/* $OpenBSD: entries.c,v 1.60 2006/06/14 15:35:17 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -341,10 +341,10 @@ cvs_parse_tagfile(char *dir, char **tagp, char **datep, int *nbp) char linebuf[128], *tagpath; if (tagp != NULL) - *tagp = (char *)NULL; + *tagp = NULL; if (datep != NULL) - *datep = (char *)NULL; + *datep = NULL; if (nbp != NULL) *nbp = 0; |