Mercurial > mplayer.hg
view osdep/ftello.c @ 23294:30c61fe726bf
Output message fix
Add missing '\n' to "pts value <= previous", change level to INFO
author | uau |
---|---|
date | Mon, 14 May 2007 01:23:52 +0000 |
parents | e268886eb13d |
children |
line wrap: on
line source
/* * ftello.c * 64-bit version of ftello() for systems which do not have it */ #include "config.h" #include <stdio.h> #include <sys/types.h> off_t ftello(FILE *stream) { fpos_t floc; if (fgetpos(stream, &floc) != 0) return -1; return floc; }