summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (show 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
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 ) {
char *endptr;
buffer [4] = 0;