Merge "bionic: ftell() returns a long, not an int"

This commit is contained in:
David Turner 2010-03-18 16:35:42 -07:00 committed by Android Code Review
commit c0e464268d

View File

@ -34,7 +34,7 @@ void pututline(struct utmp* utmp)
{ {
FILE* f; FILE* f;
struct utmp u; struct utmp u;
int i; long i;
if (!(f = fopen(_PATH_UTMP, "w+"))) if (!(f = fopen(_PATH_UTMP, "w+")))
return; return;