author | sandman <sandman> | 2002-10-28 18:32:11 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-10-28 18:32:11 (UTC) |
commit | a5079b9255ca2bfbb39df8bf22cd85d22caee342 (patch) (side-by-side diff) | |
tree | d051aa685c9dd7257a16c3a7ad49e38ea93fcc69 /libopie/odevice.cpp | |
parent | e73eeb479da0ea891c4ad8f5dd7a8361252d794e (diff) | |
download | opie-a5079b9255ca2bfbb39df8bf22cd85d22caee342.zip opie-a5079b9255ca2bfbb39df8bf22cd85d22caee342.tar.gz opie-a5079b9255ca2bfbb39df8bf22cd85d22caee342.tar.bz2 |
Fixed a typo -- just wondering why I commited this
-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 2b7e927..9f64fc0 100644 --- a/libopie/odevice.cpp +++ b/libopie/odevice.cpp @@ -683,25 +683,25 @@ bool iPAQ::hasLightSensor ( ) const return true; } #include <errno.h> #include <string.h> int iPAQ::readLightSensor ( ) { int fd; int val = -1; if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { char buffer [8]; - if ( ::read ( fd, buffer, 5 ) == 5 ) + if ( ::read ( fd, buffer, 5 ) == 5 ) { char *endptr; buffer [4] = 0; val = ::strtol ( buffer + 2, &endptr, 16 ); if ( *endptr != 0 ) val = -1; } ::close ( fd ); } return val; |