diff options
| author | Dave Chapman <dave@dchapman.com> | 2007-03-16 09:37:04 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2007-03-16 09:37:04 +0000 |
| commit | ce5383ee091d5e365e7f8ca33020777ea312cd09 (patch) | |
| tree | 05ec817177d1976aa1f235231aa66286e0e01a87 | |
| parent | a693481c2ff30c67274e7c4988549e22f04d3ae5 (diff) | |
| download | rockbox-ce5383ee091d5e365e7f8ca33020777ea312cd09.zip rockbox-ce5383ee091d5e365e7f8ca33020777ea312cd09.tar.gz rockbox-ce5383ee091d5e365e7f8ca33020777ea312cd09.tar.bz2 rockbox-ce5383ee091d5e365e7f8ca33020777ea312cd09.tar.xz | |
Correct an nonsensical #if
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12800 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | rbutil/sansapatcher/sansaio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/sansapatcher/sansaio.h b/rbutil/sansapatcher/sansaio.h index ef99faf..f308848 100644 --- a/rbutil/sansapatcher/sansaio.h +++ b/rbutil/sansapatcher/sansaio.h @@ -31,7 +31,7 @@ #define O_BINARY 0 /* Only Linux seems to need lseek64 and loff_t */ -#if !defined(linux) && defined (__linux) +#if !defined(linux) && !defined (__linux) #define loff_t off_t #define lseek64 lseek #endif |