[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: pcb.git: branch: master updated (bf409070b0558b4f63b3b78f3a29b57da6b97bb2)



The branch, master has been updated
       via  bf409070b0558b4f63b3b78f3a29b57da6b97bb2 (commit)
      from  fc0f0e38bb0f9c307497e94bf74816b5121b820e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


=========
 Summary
=========

 src/action.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


=================
 Commit Messages
=================

commit bf409070b0558b4f63b3b78f3a29b57da6b97bb2
Author: Bob Paddock <bobpspam@xxxxxxxxx>
Commit: DJ Delorie <dj@xxxxxxxxxxx>

    Compiling with MinGW requires cast to const for _spawnvp to compile without warning.

:100644 100644 fd90b19... de2738e... M	src/action.c

=========
 Changes
=========

commit bf409070b0558b4f63b3b78f3a29b57da6b97bb2
Author: Bob Paddock <bobpspam@xxxxxxxxx>
Commit: DJ Delorie <dj@xxxxxxxxxxx>

    Compiling with MinGW requires cast to const for _spawnvp to compile without warning.

diff --git a/src/action.c b/src/action.c
index fd90b19..de2738e 100644
--- a/src/action.c
+++ b/src/action.c
@@ -7330,7 +7330,7 @@ static int
 pcb_spawnvp (char **argv)
 {
 #ifdef HAVE__SPAWNVP
-  int result = _spawnvp (_P_WAIT, argv[0], argv);
+  int result = _spawnvp (_P_WAIT, argv[0], (const char * const *) argv);
   if (result == -1)
     return 1;
   else




_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs