[前][次][番号順一覧][スレッド一覧][生データ]

yarv-dev-en:167

From: "Christopher Boumenot" <boumenot gmail.com>
Date: Fri, 25 Aug 2006 11:59:37 -0400
Subject: [yarv-dev-en:167] [PATCH] Trivial warning fix for popen_exec's prototype

ML: yarv-dev-en quickml.atdot.net
New Member: boumenot@g...

This will stop gcc from complaining when compiling io.c


Regards,
Christopher


Index: io.c
===================================================================
--- io.c        (revision 540)
+++ io.c        (working copy)
@@ -2806,8 +2806,9 @@

 #ifdef HAVE_FORK
 static int
-popen_exec(struct popen_arg *p)
+popen_exec(void *arg)
 {
+    struct popen_arg *p = (struct popen_arg *)arg;
     int fd;

     popen_redirect(p);

--
ML: yarv-dev-en quickml.atdot.net
Info: http://www.atdot.net/~ko1/quickml

How to unsubscribe from the ML:
- Just send an empty message to <yarv-dev-en quickml.atdot.net>.
- Or, if you cannot send an empty message for some reason,
  please send a message just saying 'unsubscribe' to <yarv-dev-en quickml.atdot.net>.
  (e.g., hotmail's advertisement, signature, etc.)

Members of <yarv-dev-en quickml.atdot.net>:
ko1@a...
nohmad@g...
surrender_it@y...
tom@i...
wilsonb@g...
mfp@a...
curt.hibbs@g...
tsuraan@t...
kero@c...
why@w...
joaopedrosa@g...
grahamamacdonald@g...
adam.shelly@g...
gclryd-yarv-dev-en@m...
brixen@g...
jeffrey.dik@m...
rubyzbibd@u...
heidegger101@g...
klaus_momberger@y...
kashia@v...
chneukirchen@g...
aamine@l...
emiel@r...
kig@m...
pjpizza@r...
ksruby@g...
zn@m...
chris.a.williams@g...
eric@e...
gzoller@g...
ruby-forum-incoming@a...
diving@x...
steven@l...
emk.lists@g...
znmeb@c...
meinrad.recheis@g...
gerardo.santana@g...
carl.lerche@v...
drbrain@s...
james.britt@g...
joern-ml1@m...
sauer@b...
mark-ruby@a...
krisleech@i...
stephen.bannasch@g...
cies.breijs@g...
rgl@r...
nitayj@g...
xennocide@y...
slaytanic@g...
mental@r...
s450r1@g...
stephanwehner@g...
dudley@m...
shanko_date@y...
yuesefa@g...
ville.mattila@s...
beng@j...
edward.og@g...
boumenot@g...

[前][次][番号順一覧][スレッド一覧][生データ]

->     167 2006-08-26 00:59 [boumenot gmail.com  ] [PATCH] Trivial warning fix for popen_exec's prototype
       168 2006-08-28 10:40 ┗[ko1 atdot.net       ]