[trunk] use the opj_ prefix for the HAVE_FSEEKO variable

This commit is contained in:
Mickael Savinaud 2013-03-13 15:17:35 +00:00
parent 92b1e038c1
commit 021e255282
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@
ftello() only on systems with special LFS support since some systems
(e.g. FreeBSD) support a 64-bit off_t by default.
*/
#if defined(HAVE_FSEEKO)
#if defined(OPJ_HAVE_FSEEKO)
# define fseek fseeko
# define ftell ftello
#endif