author | sandman <sandman> | 2002-06-18 14:11:42 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-06-18 14:11:42 (UTC) |
commit | 5538834e726c3b5d3ba7998c56845ea652d184dd (patch) (unidiff) | |
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 | |||
@@ -284,13 +284,13 @@ int suspend ( int fix_rtc ) | |||
284 | remove_pidfile ( ); | 284 | remove_pidfile ( ); |
285 | 285 | ||
286 | return 0; | 286 | return 0; |
287 | } | 287 | } |
288 | 288 | ||
289 | 289 | ||
290 | static int onac ( void ) | 290 | int onac ( void ) |
291 | { | 291 | { |
292 | FILE *fp; | 292 | FILE *fp; |
293 | int on = 0; | 293 | int on = 0; |
294 | 294 | ||
295 | if (( fp = fopen ( APMFILE, "r" ))) { | 295 | if (( fp = fopen ( APMFILE, "r" ))) { |
296 | int ac = 0; | 296 | int ac = 0; |