summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2007-03-16 09:37:04 +0000
committerDave Chapman <dave@dchapman.com>2007-03-16 09:37:04 +0000
commitce5383ee091d5e365e7f8ca33020777ea312cd09 (patch)
tree05ec817177d1976aa1f235231aa66286e0e01a87
parenta693481c2ff30c67274e7c4988549e22f04d3ae5 (diff)
downloadrockbox-ce5383ee091d5e365e7f8ca33020777ea312cd09.tar.gz
rockbox-ce5383ee091d5e365e7f8ca33020777ea312cd09.zip
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/sansapatcher/sansaio.h b/rbutil/sansapatcher/sansaio.h
index ef99faf1c7..f30884887c 100644
--- a/rbutil/sansapatcher/sansaio.h
+++ b/rbutil/sansapatcher/sansaio.h
@@ -31,7 +31,7 @@
31#define O_BINARY 0 31#define O_BINARY 0
32 32
33/* Only Linux seems to need lseek64 and loff_t */ 33/* Only Linux seems to need lseek64 and loff_t */
34#if !defined(linux) && defined (__linux) 34#if !defined(linux) && !defined (__linux)
35#define loff_t off_t 35#define loff_t off_t
36#define lseek64 lseek 36#define lseek64 lseek
37#endif 37#endif