diff options
author | Max Kellermann <max@duempel.org> | 2011-07-03 15:20:28 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-07-03 15:20:28 +0200 |
commit | dca405a746e0b86e37659bdb112358324fc48d28 (patch) | |
tree | 97ba5c72c5ab678f5b486a017bb6785f19d490e9 /test | |
parent | 3680a6bbbb6c2ae26d5c9bf361bc2feea362b553 (diff) | |
download | mpd-dca405a746e0b86e37659bdb112358324fc48d28.tar.gz mpd-dca405a746e0b86e37659bdb112358324fc48d28.tar.xz mpd-dca405a746e0b86e37659bdb112358324fc48d28.zip |
test/read_conf: fix -Wunused-but-set-variable
Diffstat (limited to 'test')
-rw-r--r-- | test/read_conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/read_conf.c b/test/read_conf.c index 4f43e6a2e..e96bd9046 100644 --- a/test/read_conf.c +++ b/test/read_conf.c @@ -70,5 +70,5 @@ int main(int argc, char **argv) } config_global_finish(); - return 0; + return ret; } |