author | sandman <sandman> | 2002-10-27 15:56:07 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-10-27 15:56:07 (UTC) |
commit | 5f09fc992af19fc208315217eb46635a762f1e55 (patch) (side-by-side diff) | |
tree | ca5fae3182096453fd4db323a748bac038ae4ba3 | |
parent | bf21c882b82bfcdbcdce6b2dc5d863a2a2fb37c7 (diff) | |
download | opie-5f09fc992af19fc208315217eb46635a762f1e55.zip opie-5f09fc992af19fc208315217eb46635a762f1e55.tar.gz opie-5f09fc992af19fc208315217eb46635a762f1e55.tar.bz2 |
fixed a typo in the light sensor code
-rw-r--r-- | libopie/odevice.cpp | 2 |
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; |