Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Apr 1997 08:49:42 +0200 (MET DST)
From:      Wolfgang Helbig <helbig@MX.BA-Stuttgart.De>
To:        current@FreeBSD.ORG
Cc:        wollman@FreeBSD.ORG
Subject:   truncate.c breaks make world
Message-ID:  <199704150649.IAA28287@helbig.informatik.ba-stuttgart.de>

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

'make world' breaks at compiling /usr/src/lib/libc/sys/truncate.c .
The prototype and definition of truncate() disagrees.
Here is a reconciling patch:


Index: truncate.c
===================================================================
RCS file: /usr/cvsroot/src/lib/libc/sys/truncate.c,v
retrieving revision 1.1.1.1
diff -r1.1.1.1 truncate.c
47,48c47,48
< 	char 	*path;
< 	off_t	length;
---
> 	const char 	*path;
> 	off_t		length;


Wolfgang



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