diff options
author | Ben Boeckel <mathstuf@gmail.com> | 2015-08-23 18:23:27 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-08-23 15:32:10 -0700 |
commit | 1d808de8cdb6eb31e6f7713970d09376ead7e34f (patch) | |
tree | 13742eb112e42394e271705cdf6f7eb109b61ff8 /Command/ImportFeed.hs | |
parent | 6759ec26aa78596c8d7f4d613878fc4e748fb42a (diff) |
ImportFeed: fix signature of mkquvi without libquvi
Diffstat (limited to 'Command/ImportFeed.hs')
-rw-r--r-- | Command/ImportFeed.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/ImportFeed.hs b/Command/ImportFeed.hs index d82d73447..647cd269e 100644 --- a/Command/ImportFeed.hs +++ b/Command/ImportFeed.hs @@ -148,7 +148,7 @@ findDownloads u = go =<< downloadFeed u ) Nothing -> return Nothing #else - mkquvi = return Nothing + mkquvi _ _ = return Nothing #endif {- Feeds change, so a feed download cannot be resumed. -} |