summaryrefslogtreecommitdiff
authorsandman <sandman>2002-10-27 15:56:07 (UTC)
committer sandman <sandman>2002-10-27 15:56:07 (UTC)
commit5f09fc992af19fc208315217eb46635a762f1e55 (patch) (unidiff)
treeca5fae3182096453fd4db323a748bac038ae4ba3
parentbf21c882b82bfcdbcdce6b2dc5d863a2a2fb37c7 (diff)
downloadopie-5f09fc992af19fc208315217eb46635a762f1e55.zip
opie-5f09fc992af19fc208315217eb46635a762f1e55.tar.gz
opie-5f09fc992af19fc208315217eb46635a762f1e55.tar.bz2
fixed a typo in the light sensor code
Diffstat (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
@@ -685,13 +685,13 @@ bool iPAQ::hasLightSensor ( ) const
685 685
686int iPAQ::readLightSensor ( ) 686int iPAQ::readLightSensor ( )
687{ 687{
688 int fd; 688 int fd;
689 int val = -1; 689 int val = -1;
690 690
691 if (( fd = ::open ( "/proc/hal/lightsensor", O_RDONLY )) >= 0 ) { 691 if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) {
692 char buffer [5]; 692 char buffer [5];
693 693
694 if ( ::read ( fd, buffer, 4 ) == 4 ) { 694 if ( ::read ( fd, buffer, 4 ) == 4 ) {
695 char *endptr; 695 char *endptr;
696 696
697 buffer [4] = 0; 697 buffer [4] = 0;