[wpdev-commits] wolfpack/unix getopts_unix.cpp,1.3,1.4
Brought to you by:
rip,
thiagocorrea
From: Richard M. <dr...@us...> - 2004-08-13 08:55:52
|
Update of /cvsroot/wpdev/wolfpack/unix In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14349/unix Modified Files: getopts_unix.cpp Log Message: I actually fixed most of the conversion warnings, and Wolfpack didn't break for me... so I'll commit. This removes quite a bit of warning garbage. :) Index: getopts_unix.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/unix/getopts_unix.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** getopts_unix.cpp 2 Jun 2004 15:04:11 -0000 1.3 --- getopts_unix.cpp 13 Aug 2004 08:55:42 -0000 1.4 *************** *** 41,45 **** void daemonize() { ! int pid, fd, status; pid = fork(); --- 41,45 ---- void daemonize() { ! int pid, fd; pid = fork(); *************** *** 107,111 **** unsigned int i; ! for ( i = 1; i < argc; i++ ) { if ( argv[i][0] == '-' ) --- 107,111 ---- unsigned int i; ! for ( i = 1; i < ( uint ) argc; i++ ) { if ( argv[i][0] == '-' ) |