summaryrefslogtreecommitdiffstats
path: root/sys-utils/readprofile.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys-utils/readprofile.c')
-rw-r--r--sys-utils/readprofile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-utils/readprofile.c b/sys-utils/readprofile.c
index 4c52cf1fa..4462a811f 100644
--- a/sys-utils/readprofile.c
+++ b/sys-utils/readprofile.c
@@ -121,7 +121,7 @@ int popenMap; /* flag to tell if popen() has been used */
* Use an fd for the profiling buffer, to skip stdio overhead
*/
if ( ((proFd=open(proFile,O_RDONLY)) < 0)
- || ((len=lseek(proFd,0,SEEK_END)) < 0)
+ || ((int)(len=lseek(proFd,0,SEEK_END)) < 0)
|| (lseek(proFd,0,SEEK_SET)<0) )
{
fprintf(stderr,"%s: %s: %s\n",prgname,proFile,strerror(errno));