Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 Jun 2002 22:01:37 +0300 (EEST)
From:      Giorgos Keramidas <keramida@FreeBSD.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   bin/38931: Cleanup for WARNS=4 of src/games/fortune/strfile
Message-ID:  <200206051901.g55J1b2k010910@hades.hell.gr>

next in thread | raw e-mail | index | archive | help

>Number:         38931
>Category:       bin
>Synopsis:       Cleanup for WARNS=4 of src/games/fortune/strfile
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jun 05 14:50:02 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Giorgos Keramidas
>Release:        FreeBSD 5.0-CURRENT i386
>Organization:
>Environment:
	System: FreeBSD hades.hell.gr 5.0-CURRENT FreeBSD 5.0-CURRENT #0:
	Wed Jun 5 05:24:39 EEST 2002
	root@hades.hell.gr:/usr/obj/usr/src/sys/HECATE i386

>Description:
	After a buildworld with WARNS=3, and a few greps for warnings
	to the logfile, here's a change that removes a few of the
	warnings for the fortune sources.

>How-To-Repeat:

	% cd src/games/fortunes/strfile
	% make WARNS=3

>Fix:

%%%
Index: strfile.c
===================================================================
RCS file: /home/ncvs/src/games/fortune/strfile/strfile.c,v
retrieving revision 1.21
diff -u -r1.21 strfile.c
--- strfile.c	24 Mar 2002 01:09:35 -0000	1.21
+++ strfile.c	5 Jun 2002 18:52:08 -0000
@@ -147,13 +147,12 @@
  *	CHUNKSIZE blocks; if the latter, we just write each pointer,
  *	and then seek back to the beginning to write in the table.
  */
-int main(ac, av)
-int	ac;
-char	**av;
+int
+main(int ac, char *av[])
 {
 	char		*sp, dc;
 	FILE		*inf, *outf;
-	long           last_off, length, pos, *p;
+	unsigned long	last_off, length, pos, *p;
 	int		first, cnt;
 	char		*nsp;
 	STR		*fp;
%%%
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200206051901.g55J1b2k010910>