1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00
freebsd-ports/devel/gcvs/files/patch-common_cvsgui_process.cpp
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

12 lines
498 B
C++

--- common/cvsgui_process.cpp.orig 2007-11-22 20:25:42.000000000 +0100
+++ common/cvsgui_process.cpp 2007-11-22 20:26:39.000000000 +0100
@@ -899,7 +899,7 @@
CvsProcessCallbacks *callbacks = sigtt_cvs_process->callbacks;
// killing the cvs process avoids getting stuck in a SIGSTOP
cvs_process_destroy (sigtt_cvs_process);
- callbacks->consoleerr(SIGTT_ERR, strlen(SIGTT_ERR));
+ callbacks->consoleerr((char *)SIGTT_ERR, strlen(SIGTT_ERR));
}
sigtt_cvs_process = NULL;
}