From: <ped...@us...> - 2009-12-12 14:28:37
|
Revision: 1409 http://cegcc.svn.sourceforge.net/cegcc/?rev=1409&view=rev Author: pedroalves Date: 2009-12-12 14:28:28 +0000 (Sat, 12 Dec 2009) Log Message: ----------- 2009-12-12 Pedro Alves <ped...@us...> * rshd.c (create_child): Delete unused variable. (handle_connection): Correct type of local variable. Modified Paths: -------------- trunk/cegcc/tools/rshd/ChangeLog trunk/cegcc/tools/rshd/rshd.c Modified: trunk/cegcc/tools/rshd/ChangeLog =================================================================== --- trunk/cegcc/tools/rshd/ChangeLog 2009-12-12 14:25:23 UTC (rev 1408) +++ trunk/cegcc/tools/rshd/ChangeLog 2009-12-12 14:28:28 UTC (rev 1409) @@ -1,5 +1,10 @@ 2009-12-12 Pedro Alves <ped...@us...> + * rshd.c (create_child): Delete unused variable. + (handle_connection): Correct type of local variable. + +2009-12-12 Pedro Alves <ped...@us...> + * Makefile (TARGET): Default to arm-mingw32ce. 2007-09-08 Pedro Alves <ped...@po...> Modified: trunk/cegcc/tools/rshd/rshd.c =================================================================== --- trunk/cegcc/tools/rshd/rshd.c 2009-12-12 14:25:23 UTC (rev 1408) +++ trunk/cegcc/tools/rshd/rshd.c 2009-12-12 14:28:28 UTC (rev 1409) @@ -562,7 +562,6 @@ /* Close the previously succeeded pipes. */ for (j = 0; j < i; j++) { - wchar_t devname[MAX_PATH]; SafeCloseHandle (&child->readh[j]); SafeCloseHandle (&child->writeh[j]); } @@ -914,7 +913,7 @@ && (GetExitCodeThread (h, &ec) && ec == 1)); { - int m; + size_t m; const struct { HANDLE h; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |