diff options
author | Bert Münnich <ber.t@posteo.de> | 2017-05-17 20:39:19 +0200 |
---|---|---|
committer | Bert Münnich <ber.t@posteo.de> | 2017-05-17 20:39:30 +0200 |
commit | 52c57f5d6114b78c44b232ff349605def07eb524 (patch) | |
tree | 916f6c37d264f9d98e261ccbb18e0382e57c083e | |
parent | c027122c5f0c2f4f1c513a074c42487bd326a91c (diff) |
Adapt inotify_nop to API changes
-rw-r--r-- | autoreload_nop.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/autoreload_nop.c b/autoreload_nop.c index 41dbf47..48b7f8f 100644 --- a/autoreload_nop.c +++ b/autoreload_nop.c @@ -18,19 +18,12 @@ #include "autoreload.h" -void arl_cleanup(arl_t *arl) +void arl_init(arl_t *arl) { (void) arl; } -bool arl_handle(arl_t *arl, const char *filepath) -{ - (void) arl; - (void) filepath; - return false; -} - -void arl_init(arl_t *arl) +void arl_cleanup(arl_t *arl) { (void) arl; } @@ -41,3 +34,9 @@ void arl_setup(arl_t *arl, const char *filepath) (void) filepath; } +bool arl_handle(arl_t *arl) +{ + (void) arl; + return false; +} + |