|
From: <and...@us...> - 2006-04-11 20:29:37
|
Revision: 1250 Author: andreradke Date: 2006-04-11 13:29:30 -0700 (Tue, 11 Apr 2006) ViewCVS: http://svn.sourceforge.net/frontierkernel/?rev=1250&view=rev Log Message: ----------- Fix GCC compiler warning in readwholefileverb, introduced in previous commit. Modified Paths: -------------- Frontier/trunk/Common/source/fileverbs.c Modified: Frontier/trunk/Common/source/fileverbs.c =================================================================== --- Frontier/trunk/Common/source/fileverbs.c 2006-04-11 20:11:18 UTC (rev 1249) +++ Frontier/trunk/Common/source/fileverbs.c 2006-04-11 20:29:30 UTC (rev 1250) @@ -2349,7 +2349,7 @@ if (!getpathvalue (hparam1, 1, &fs)) return (false); - if (!fifopenfile (&fs, currentprocess)) + if (!fifopenfile (&fs, (long) currentprocess)) return (false); fl = fifreadfile (&fs, &x); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |