--- trunk/frameCount/src/mainFrameCount.c 2002/07/19 00:48:45 36 +++ trunk/frameCount/src/mainFrameCount.c 2004/03/05 17:21:20 1086 @@ -1,3 +1,5 @@ +#define _FILE_OFFSET_BITS 64 + #include #include @@ -10,7 +12,8 @@ int main(int argc, char *argv[] ){ exit(8); } - printf( "file \"%s\" has %d frames.\n", argv[1], frameCount( argv[1] ) ); + printf( "file \"%s\" has %d frames.\n", argv[1], + frameCount( argv[1], 0 ) ); return 0; }