1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00
freebsd-ports/devel/gcvs/files/patch-common_AppGlue.h
Martin Wilke a28acc2928 - Fix build with gcc 4.2/AMD64
PR:		118027
Submitted by:	Pietro Cerutti <gahr@gahr.ch>
Approved by:	portmgr (pav,linimon)
2007-11-22 22:27:29 +00:00

14 lines
397 B
C++

--- common/AppGlue.h.orig 2007-11-13 22:34:29.000000000 +0100
+++ common/AppGlue.h 2007-11-13 22:34:36.000000000 +0100
@@ -30,8 +30,8 @@
class CCvsConsole
{
public:
- virtual long cvs_out(char *txt, long len) = 0L;
- virtual long cvs_err(char *txt, long len) = 0L;
+ virtual long cvs_out(char *txt, long len) = 0;
+ virtual long cvs_err(char *txt, long len) = 0;
};
#define errInternal -99