command/{Queue,Other}: eliminate local "bool" variable

This commit is contained in:
Max Kellermann
2015-08-11 21:54:29 +02:00
parent 4294fdb0b2
commit 993df0fd28
3 changed files with 6 additions and 13 deletions

View File

@@ -166,17 +166,15 @@ handle_sticker_song(Client &client, ConstBuffer<const char *> args)
}
}
bool success;
struct sticker_song_find_data data = {
client,
args[3],
};
success = sticker_song_find(*db, base_uri, data.name,
op, value,
sticker_song_find_print_cb, &data,
error);
if (!success) {
if (!sticker_song_find(*db, base_uri, data.name,
op, value,
sticker_song_find_print_cb, &data,
error)) {
if (error.IsDefined())
return print_error(client, error);