From: APTX Date: Sun, 26 May 2013 02:25:50 +0000 (+0200) Subject: Fix typo. X-Git-Url: https://gitweb.aptx.org/?a=commitdiff_plain;h=63cf2adce807d2b5a510c07bc62896dd201b0149;p=localmylist.git Fix typo. This doesn't actually fix anything. Named binds are emulated with positional ones on pg so the result should be the same. --- diff --git a/localmylist/database.cpp b/localmylist/database.cpp index f353c02..9106f76 100644 --- a/localmylist/database.cpp +++ b/localmylist/database.cpp @@ -1198,7 +1198,7 @@ bool Database::clearPendingMyListUpdate(const PendingMyListUpdate &request) "UPDATE pending_mylist_update SET finished = NOW() " " WHERE update_id = :updateId "); - q.bindValue(":update_id", request.updateId); + q.bindValue(":updateId", request.updateId); return exec(q); }