author | sandman <sandman> | 2002-06-18 14:11:42 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-06-18 14:11:42 (UTC) |
commit | 5538834e726c3b5d3ba7998c56845ea652d184dd (patch) (side-by-side diff) | |
tree | f2c78c7116b2d695cd9c939f39f38c1a59506a17 | |
parent | 99cf287037a0d9f99e4fc035d1b9f6db08bb6583 (diff) | |
download | opie-5538834e726c3b5d3ba7998c56845ea652d184dd.zip opie-5538834e726c3b5d3ba7998c56845ea652d184dd.tar.gz opie-5538834e726c3b5d3ba7998c56845ea652d184dd.tar.bz2 |
Fix a compiler warning
-rw-r--r-- | core/opiealarm/opiealarm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/opiealarm/opiealarm.c b/core/opiealarm/opiealarm.c index 128929e..a4d46ed 100644 --- a/core/opiealarm/opiealarm.c +++ b/core/opiealarm/opiealarm.c @@ -274,33 +274,33 @@ int suspend ( int fix_rtc ) // disable alarm irq if ( ioctl ( fd, RTC_AIE_OFF, 0 ) < 0 ) error_msg_and_die ( 1, "ioctl RTC_AIE_OFF" ); close ( fd ); log_msg ( "EXITING\n" ); fclose ( log ); remove_pidfile ( ); return 0; } -static int onac ( void ) +int onac ( void ) { FILE *fp; int on = 0; if (( fp = fopen ( APMFILE, "r" ))) { int ac = 0; if ( fscanf ( fp, "%*[^ ] %*d.%*d 0x%*x 0x%x 0x%*x 0x%*x %*d%% %*i %*c", &ac ) == 1 ) on = ( ac == 0x01 ) ? 1 : 0; fclose ( fp ); } return on; } int resume ( int resuspend ) |