summaryrefslogtreecommitdiff
path: root/libopie
authorsandman <sandman>2002-10-27 15:56:07 (UTC)
committer sandman <sandman>2002-10-27 15:56:07 (UTC)
commit5f09fc992af19fc208315217eb46635a762f1e55 (patch) (side-by-side diff)
treeca5fae3182096453fd4db323a748bac038ae4ba3 /libopie
parentbf21c882b82bfcdbcdce6b2dc5d863a2a2fb37c7 (diff)
downloadopie-5f09fc992af19fc208315217eb46635a762f1e55.zip
opie-5f09fc992af19fc208315217eb46635a762f1e55.tar.gz
opie-5f09fc992af19fc208315217eb46635a762f1e55.tar.bz2
fixed a typo in the light sensor code
Diffstat (limited to 'libopie') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/odevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp
index 44fe35f..6ea4d45 100644
--- a/libopie/odevice.cpp
+++ b/libopie/odevice.cpp
@@ -688,7 +688,7 @@ int iPAQ::readLightSensor ( )
int fd;
int val = -1;
- if (( fd = ::open ( "/proc/hal/lightsensor", O_RDONLY )) >= 0 ) {
+ if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) {
char buffer [5];
if ( ::read ( fd, buffer, 4 ) == 4 ) {